builtin/commit.c: fix a typo in the comment

Signed-off-by: Kaartic Sivaraam <kaarticsivaraam91196@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Kaartic Sivaraam committed Jul 6, 2017 at 08:49 UTC 669638fe7a3e838e38c4c152e27ac03ffe4687a0
1 file changed +1 -1
builtin/commit.c
+1 -1
@@ -984,7 +984,7 @@ static int rest_is_empty(struct strbuf *sb, int start)
984 int i, eol;
985 const char *nl;
986
987 - /* Check if the rest is just whitespace and Signed-of-by's. */
987 + /* Check if the rest is just whitespace and Signed-off-by's. */
988 for (i = start; i < sb->len; i++) {
989 nl = memchr(sb->buf + i, '\n', sb->len - i);
990 if (nl)