]> source.dussan.org Git - jgit.git/commitdiff
Fix typo in reflog message written by RebaseCommand.tryFastForward() 66/47966/2
authorMatthias Sohn <matthias.sohn@sap.com>
Fri, 15 May 2015 13:54:38 +0000 (15:54 +0200)
committerMatthias Sohn <matthias.sohn@sap.com>
Fri, 15 May 2015 21:00:53 +0000 (23:00 +0200)
Change-Id: I1ad544f2b5673ed3b4a2206b5eb4ce20fd3c86d2
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
org.eclipse.jgit/src/org/eclipse/jgit/api/RebaseCommand.java

index 62001d0a78e546a3fc230d681c4d190b664ff37c..82444ba6094ea4e84c4b58ff3741063f04fb572d 100644 (file)
@@ -1227,7 +1227,7 @@ public class RebaseCommand extends GitCommand<RebaseResult> {
                                RefUpdate rup = repo.updateRef(headName);
                                rup.setExpectedOldObjectId(oldCommit);
                                rup.setNewObjectId(newCommit);
-                               rup.setRefLogMessage("Fast-foward from " + oldCommit.name() //$NON-NLS-1$
+                               rup.setRefLogMessage("Fast-forward from " + oldCommit.name() //$NON-NLS-1$
                                                + " to " + newCommit.name(), false); //$NON-NLS-1$
                                Result res = rup.update(walk);
                                switch (res) {