diff options
author | Robin Stocker <robin@nibor.org> | 2012-09-24 00:34:33 +0200 |
---|---|---|
committer | Robin Stocker <robin@nibor.org> | 2012-09-24 00:34:33 +0200 |
commit | 56a0286b28659e260c93d1efa307033e202381ca (patch) | |
tree | 102041cee418543a9f8f70d32e5d42f7fa0230f9 /org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java | |
parent | 78c865942849de420592bb822e9e1fd85cc95ade (diff) | |
download | jgit-56a0286b28659e260c93d1efa307033e202381ca.tar.gz jgit-56a0286b28659e260c93d1efa307033e202381ca.zip |
Fix typo in AnyObjectId#abbreviate
Change-Id: I5796dc81727a8e1923189e9490a55c4af6ad053e
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java index 49dc9147f6..9d2babd047 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java @@ -510,8 +510,8 @@ public abstract class AnyObjectId implements Comparable<Object> { /** * Return an abbreviation (prefix) of this object SHA-1. - * - * This implementation does not guaranteeing uniqueness. Callers should + * <p> + * This implementation does not guarantee uniqueness. Callers should * instead use {@link ObjectReader#abbreviate(AnyObjectId, int)} to obtain a * unique abbreviation within the scope of a particular object database. * |