Merge branch 'ks/typofix-commit-c-comment'
authorJunio C Hamano <gitster@pobox.com>
Mon, 10 Jul 2017 20:42:51 +0000 (13:42 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 10 Jul 2017 20:42:51 +0000 (13:42 -0700)
Typofix.

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

builtin/commit.c
index b0a740b25e6ba8c4c3e6165b3ec67b20e0536e5f..8e93802511e2a798e43d30da9218a56f97404dc7 100644 (file)
@@ -981,7 +981,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)