diff options
author | Robin Rosenberg <robin.rosenberg@dewire.com> | 2012-09-24 14:22:24 -0400 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2012-09-24 14:22:24 -0400 |
commit | 13df55a464e89fd961ef97a9c951baba38d3f5d9 (patch) | |
tree | 33b05a64b2d4b09fad0eec8291af20e71fd2958e | |
parent | aca8df0425053c3d3f4a5fd76c25d4f9a7d69e61 (diff) | |
parent | 56a0286b28659e260c93d1efa307033e202381ca (diff) | |
download | jgit-13df55a464e89fd961ef97a9c951baba38d3f5d9.tar.gz jgit-13df55a464e89fd961ef97a9c951baba38d3f5d9.zip |
Merge "Fix typo in AnyObjectId#abbreviate"
-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. * |