diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-02-22 13:10:19 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-02-22 13:10:19 -0800 |
commit | fa7b63d2f142bec8fe0568761e1c9c22ec877bca (patch) | |
tree | 32def7720cd9f4c362b9ddccf7efba04979aa308 | |
parent | 8a71d90b7e6bcf88232e34c77560dd3d0b334247 (diff) | |
parent | f562d7de32fe4202c3d0d245b87fe671011ad698 (diff) | |
download | git-fa7b63d2f142bec8fe0568761e1c9c22ec877bca.tar.gz git-fa7b63d2f142bec8fe0568761e1c9c22ec877bca.tar.xz |
Merge branch 'ah/stripspace-optstring' into maint
* ah/stripspace-optstring:
stripspace: call U+0020 a "space" instead of a "blank"
-rw-r--r-- | builtin/stripspace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stripspace.c b/builtin/stripspace.c index 7ff8434f7..15e716ef4 100644 --- a/builtin/stripspace.c +++ b/builtin/stripspace.c @@ -35,7 +35,7 @@ int cmd_stripspace(int argc, const char **argv, const char *prefix) N_("skip and remove all lines starting with comment character"), STRIP_COMMENTS), OPT_CMDMODE('c', "comment-lines", &mode, - N_("prepend comment character and blank to each line"), + N_("prepend comment character and space to each line"), COMMENT_LINES), OPT_END() }; |