diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-07-10 13:42:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-10 13:42:51 -0700 |
commit | cd0391af937ef2314818d8295d946479e6ecc3fa (patch) | |
tree | 1d1a8f383933859bb8fda58a1973f68701a7fdf0 /builtin/commit.c | |
parent | Merge branch 'ab/wildmatch' (diff) | |
parent | builtin/commit.c: fix a typo in the comment (diff) | |
download | tgif-cd0391af937ef2314818d8295d946479e6ecc3fa.tar.xz |
Merge branch 'ks/typofix-commit-c-comment'
Typofix.
* ks/typofix-commit-c-comment:
builtin/commit.c: fix a typo in the comment
Diffstat (limited to 'builtin/commit.c')
-rw-r--r-- | builtin/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index b0a740b25e..8e93802511 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -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) |