From: Kaartic Sivaraam Date: Thu, 6 Jul 2017 03:19:57 +0000 (+0530) Subject: builtin/commit.c: fix a typo in the comment X-Git-Tag: v2.13.3~2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=669638fe7a3e838e38c4c152e27ac03ffe4687a0;p=thirdparty%2Fgit.git builtin/commit.c: fix a typo in the comment Signed-off-by: Kaartic Sivaraam Signed-off-by: Junio C Hamano --- diff --git a/builtin/commit.c b/builtin/commit.c index 8d1cac0629..aff6bf7aad 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -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)