Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Stocker2012-09-23 22:34:33 +0000
committerRobin Stocker2012-09-23 22:34:33 +0000
commit56a0286b28659e260c93d1efa307033e202381ca (patch)
tree102041cee418543a9f8f70d32e5d42f7fa0230f9
parent78c865942849de420592bb822e9e1fd85cc95ade (diff)
downloadjgit-56a0286b28659e260c93d1efa307033e202381ca.tar.gz
jgit-56a0286b28659e260c93d1efa307033e202381ca.tar.xz
jgit-56a0286b28659e260c93d1efa307033e202381ca.zip
Fix typo in AnyObjectId#abbreviate
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/lib/AnyObjectId.java4
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.
*

Back to the top