diff options
| author | Junio C Hamano <gitster@pobox.com> | 2017-07-12 15:20:48 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-07-12 15:20:49 -0700 |
| commit | ecab58c65f5915869fd84a57e1060e146aaa0be3 (patch) | |
| tree | bafcd91135b77ee307d4ed591fba03ece1a619f0 /builtin/commit.c | |
| parent | Merge branch 'jk/reflog-walk-maint' into maint (diff) | |
| parent | builtin/commit.c: fix a typo in the comment (diff) | |
| download | git-ecab58c65f5915869fd84a57e1060e146aaa0be3.tar.gz git-ecab58c65f5915869fd84a57e1060e146aaa0be3.zip | |
Merge branch 'ks/typofix-commit-c-comment' into maint
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 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) |
