diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/ConcurrentRefUpdateException.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/ConcurrentRefUpdateException.java index 02bb494f6..6f681b68c 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/ConcurrentRefUpdateException.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/ConcurrentRefUpdateException.java @@ -44,7 +44,7 @@ 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 diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java b/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java index 28946e5fe..9b2698440 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/api/Git.java @@ -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 Git(Repository repo) { } /** - * Returns a command class to execute a {@code Commit} command + * Returns a command object to execute a {@code Commit} command * * @see