]> git.neil.brown.name Git - git.git/commitdiff
Merge branch 'ks/typofix-commit-c-comment' into maint
authorJunio C Hamano <gitster@pobox.com>
Wed, 12 Jul 2017 22:20:48 +0000 (15:20 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 12 Jul 2017 22:20:49 +0000 (15:20 -0700)
Typofix.

* ks/typofix-commit-c-comment:
  builtin/commit.c: fix a typo in the comment

builtin/commit.c

index 8d1cac0629e7079daeef57ac049c0c7d7549e6d0..aff6bf7aadc6f5209d5f8fc22dfde055a96214c4 100644 (file)
@@ -984,7 +984,7 @@ static int rest_is_empty(struct strbuf *sb, int start)
        int i, eol;
        const char *nl;
 
-       /* Check if the rest is just whitespace and Signed-of-by's. */
+       /* Check if the rest is just whitespace and Signed-off-by's. */
        for (i = start; i < sb->len; i++) {
                nl = memchr(sb->buf + i, '\n', sb->len - i);
                if (nl)