From: Christian Fredrik Johnsen <christian@xxxxxxxxxx> Fix a typo in a comment in refs.c: "checking checking" → "checking". Signed-off-by: Christian Fredrik Johnsen <christian@xxxxxxxxxx> --- refs: fix duplicated word in comment cc: Martin Ågren martin.agren@xxxxxxxxx Changes since v1: * Add a blank line in the commit message to separate commit body from Signed-off-by: footer * Moved the word common from line 2553 to 2552, to make the comment be similar in style to other comments in refs.c. (Usually the last comment line is somewhat shorter than the first ones). Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-git-1940%2FChristianFredrikJohnsen%2Fmaster-v2 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-git-1940/ChristianFredrikJohnsen/master-v2 Pull-Request: https://github.com/git/git/pull/1940 Range-diff vs v1: 1: 327563ce3fd ! 1: 029c23cf027 refs: fix duplicated word in comment @@ Commit message refs: fix duplicated word in comment Fix a typo in a comment in refs.c: "checking checking" → "checking". + Signed-off-by: Christian Fredrik Johnsen <christian@xxxxxxxxxx> ## refs.c ## @@ refs.c: int refs_verify_refnames_available(struct ref_store *refs, /* * If we've already seen the directory we don't need to - * process it again. Skip it to avoid checking checking -+ * process it again. Skip it to avoid checking - * common prefixes like "refs/heads/" repeatedly. +- * common prefixes like "refs/heads/" repeatedly. ++ * process it again. Skip it to avoid checking common ++ * prefixes like "refs/heads/" repeatedly. */ if (!strset_add(&dirnames, dirname.buf)) + continue; refs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/refs.c b/refs.c index f0fe77bd7cf..1fb270c5782 100644 --- a/refs.c +++ b/refs.c @@ -2549,8 +2549,8 @@ int refs_verify_refnames_available(struct ref_store *refs, /* * If we've already seen the directory we don't need to - * process it again. Skip it to avoid checking checking - * common prefixes like "refs/heads/" repeatedly. + * process it again. Skip it to avoid checking common + * prefixes like "refs/heads/" repeatedly. */ if (!strset_add(&dirnames, dirname.buf)) continue; base-commit: 5b97a56fa0e7d580dc8865b73107407c9b3f0eff -- gitgitgadget