From 2f5d3847d4ed1b6d6c6d2a2e6726cfcda7d361e5 Mon Sep 17 00:00:00 2001 From: Elijah Newren Date: Tue, 10 Dec 2019 20:00:22 +0000 Subject: [PATCH] dir: remove stray quote character in comment Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.11.4.GIT