]> source.dussan.org Git - jgit.git/commitdiff
Fix javadoc typos in JGit API 81/1081/1
authorStefan Lay <stefan.lay@sap.com>
Thu, 8 Jul 2010 08:42:29 +0000 (10:42 +0200)
committerStefan Lay <stefan.lay@sap.com>
Thu, 8 Jul 2010 08:42:29 +0000 (10:42 +0200)
There were some small errors which made it
difficult to read the JavaDoc.

Change-Id: Ib3b34353465162adebaca3514d596d0edf5aea51
Signed-off-by: Stefan Lay <stefan.lay@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/ConcurrentRefUpdateException.java
org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java
org.eclipse.jgit/src/org/eclipse/jgit/api/NoMessageException.java

index 02bb494f668fb75985d25878ce21dc97c2f578df..6f681b68cc52c9a763e1db7ea16154d73ebe1256 100644 (file)
@@ -44,7 +44,7 @@ import org.eclipse.jgit.lib.Ref;
 import org.eclipse.jgit.lib.RefUpdate;
 
 /**
- * Exception thrown when a command want's to update a ref but failed because
+ * Exception thrown when a command wants to update a ref but failed because
  * another process is accessing (or even also updating) the ref.
  *
  * @see RefUpdate.Result#LOCK_FAILURE
index 28946e5fe701c07f1d098ac1aebab9fcfa258005..9b26984402cf938fb3125700efd9e3b5b3322b5f 100644 (file)
@@ -79,7 +79,7 @@ public class Git {
        private final Repository repo;
 
        /**
-        * Constructs a new {@link Git} class which can interact with the specified
+        * Constructs a new {@link Git} object which can interact with the specified
         * git repository. All command classes returned by methods of this class
         * will always interact with this git repository.
         *
@@ -94,7 +94,7 @@ public class Git {
        }
 
        /**
-        * Returns a command class to execute a {@code Commit} command
+        * Returns a command object to execute a {@code Commit} command
         *
         * @see <a
         *      href="http://www.kernel.org/pub/software/scm/git/docs/git-commit.html"
@@ -107,7 +107,7 @@ public class Git {
        }
 
        /**
-        * Returns a command class to execute a {@code Log} command
+        * Returns a command object to execute a {@code Log} command
         *
         * @see <a
         *      href="http://www.kernel.org/pub/software/scm/git/docs/git-log.html"
@@ -120,7 +120,7 @@ public class Git {
        }
 
        /**
-        * Returns a command class to execute a {@code Merge} command
+        * Returns a command object to execute a {@code Merge} command
         *
         * @see <a
         *      href="http://www.kernel.org/pub/software/scm/git/docs/git-merge.html"
@@ -133,7 +133,7 @@ public class Git {
        }
 
        /**
-        * @return the git repository this class is interacting with
+        * @return the git repository this instance is interacting with
         */
        public Repository getRepository() {
                return repo;
index 7c6a184e0c7f63f8e17a8ca5496d2fc385920ef0..ab5652e24c74d7e87e2b4644ffc6a48a32705033 100644 (file)
@@ -38,7 +38,7 @@
 package org.eclipse.jgit.api;
 
 /**
- * Exception thrown when the options given to a command doesn't include a
+ * Exception thrown when the options given to a command don't include a
  * specification of a message text (e.g. a commit was called without explicitly
  * specifying a commit message (or other options telling where to take the
  * message from.