diff options
author | Allan Caffee <allan.caffee@gmail.com> | 2009-05-04 13:37:30 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-05 22:04:16 -0700 |
commit | 2c5b0115038ab283b346fbb8059b93973ff4c8f2 (patch) | |
tree | 08d12e2203d403efbd616ff7a8dc7b470a34c2b9 | |
parent | 7dae8b21c2fe39a59661c709f0dc17090dafa5a4 (diff) | |
download | git-2c5b0115038ab283b346fbb8059b93973ff4c8f2.tar.gz git-2c5b0115038ab283b346fbb8059b93973ff4c8f2.tar.xz |
dir.c: Fix two minor grammatical errors in comments
Signed-off-by: Allan Caffee <allan.caffee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -58,7 +58,7 @@ static inline int special_char(unsigned char c1) } /* - * Does 'match' matches the given name? + * Does 'match' match the given name? * A match is found if * * (1) the 'match' string is leading directory of 'name', or @@ -292,7 +292,7 @@ static void prep_exclude(struct dir_struct *dir, const char *base, int baselen) dir->basebuf[baselen] = '\0'; } -/* Scan the list and let the last match determines the fate. +/* Scan the list and let the last match determine the fate. * Return 1 for exclude, 0 for include and -1 for undecided. */ static int excluded_1(const char *pathname, |