From: Elijah Newren Date: Tue, 10 Dec 2019 20:00:22 +0000 (+0000) Subject: dir: remove stray quote character in comment X-Git-Tag: v2.25.0-rc0~1^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2f5d3847d4ed1b6d6c6d2a2e6726cfcda7d361e5;p=thirdparty%2Fgit.git dir: remove stray quote character in comment Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/dir.c b/dir.c index 0dd5266629..5dacacd469 100644 --- a/dir.c +++ b/dir.c @@ -373,7 +373,7 @@ static int match_pathspec_item(const struct index_state *istate, !ps_strncmp(item, match, name, namelen)) return MATCHED_RECURSIVELY_LEADING_PATHSPEC; - /* name" doesn't match up to the first wild character */ + /* name doesn't match up to the first wild character */ if (item->nowildcard_len < item->len && ps_strncmp(item, match, name, item->nowildcard_len - prefix))