diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2009-05-01 22:03:07 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-01 16:07:29 -0700 |
commit | 1087aba86b4a687cabf03d4a060d4b51282819d3 (patch) | |
tree | cfb2b68669351471e328cc22ab03306cf822e13e | |
parent | 4b25d091ba53c758fae0096b8c0662371857b9d9 (diff) | |
download | git-1087aba86b4a687cabf03d4a060d4b51282819d3.tar.gz |
ctype.c: fix typo in comment
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | ctype.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ enum { A = GIT_ALPHA, D = GIT_DIGIT, G = GIT_GLOB_SPECIAL, /* *, ?, [, \\ */ - R = GIT_REGEX_SPECIAL, /* $, (, ), +, ., ^, {, | * */ + R = GIT_REGEX_SPECIAL, /* $, (, ), +, ., ^, {, | */ }; unsigned char sane_ctype[256] = { |