Skip to content

Commit 571fb96

Browse files
ryenusgitster
authored andcommitted
fix-typo: consecutive-word duplications
Correct unintentional duplication(s) of words, such as "the the", and "can can" etc. The changes are only applied to cases where it's fixing what is clearly wrong or prone to misunderstanding, as suggested by the reviewers. Helped-by: Johannes Schindelin <[email protected]> Helped-by: Denton Liu <[email protected]> Helped-by: Junio C Hamano <[email protected]> Signed-off-by: ryenus <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent ad05a3d commit 571fb96

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Documentation/RelNotes/2.7.3.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Fixes since v2.7.2
2020
tests.
2121

2222
* "git show 'HEAD:Foo[BAR]Baz'" did not interpret the argument as a
23-
rev, i.e. the object named by the the pathname with wildcard
23+
rev, i.e. the object named by the pathname with wildcard
2424
characters in a tree object.
2525

2626
* "git rev-parse --git-common-dir" used in the worktree feature

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ all::
481481
#
482482
# When DEVELOPER is set, DEVOPTS can be used to control compiler
483483
# options. This variable contains keywords separated by
484-
# whitespace. The following keywords are are recognized:
484+
# whitespace. The following keywords are recognized:
485485
#
486486
# no-error:
487487
#

graph.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ struct git_graph {
218218
int merge_layout;
219219
/*
220220
* The number of columns added to the graph by the current commit. For
221-
* 2-way and octopus merges, this is is usually one less than the
221+
* 2-way and octopus merges, this is usually one less than the
222222
* number of parents:
223223
*
224224
* | | | | | \

submodule-config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ static void submodule_cache_check_init(struct repository *repo)
626626

627627
/*
628628
* Note: This function is private for a reason, the '.gitmodules' file should
629-
* not be used as as a mechanism to retrieve arbitrary configuration stored in
629+
* not be used as a mechanism to retrieve arbitrary configuration stored in
630630
* the repository.
631631
*
632632
* Runs the provided config function on the '.gitmodules' file found in the

t/t5314-pack-cycle-detection.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ immediately after the lookup for "dummy".
5353

5454

5555

56-
# Create a pack containing the the tree $1 and blob $1:file, with
56+
# Create a pack containing the tree $1 and blob $1:file, with
5757
# the latter stored as a delta against $2:file.
5858
#
5959
# We convince pack-objects to make the delta in the direction of our choosing

0 commit comments

Comments
 (0)