Skip to content

Commit abb9e55

Browse files
committed
fix-typo: consecutive-word duplications
Correct unintentional duplication(s) of words, such as "the the", and "can can" etc. In certain cases, the repeated words are suspicious but actually ok, and if some alternative wording exists and might be an improvement, then the alternative wording is used, for example: "we didn't do so so far" becomes "we didn't do that so far". Signed-off-by: ryenus <ryenus@gmail.com>
1 parent 228f531 commit abb9e55

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Documentation/RelNotes/2.13.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ UI, Workflows & Features
3838

3939
* Deletion of a branch "foo/bar" could remove .git/refs/heads/foo
4040
once there no longer is any other branch whose name begins with
41-
"foo/", but we didn't do so so far. Now we do.
41+
"foo/", but we didn't do that so far. Now we do.
4242

4343
* When "git merge" detects a path that is renamed in one history
4444
while the other history deleted (or modified) it, it now reports

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
#

convert.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
* This should use the pathname to decide on whether it wants to do some
1717
* more interesting conversions (automatic gzip/unzip, general format
18-
* conversions etc etc), but by default it just does automatic CRLF<->LF
18+
* conversions etc), but by default it just does automatic CRLF<->LF
1919
* translation when the "text" attribute or "auto_crlf" option is set.
2020
*/
2121

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
@@ -618,7 +618,7 @@ static void submodule_cache_check_init(struct repository *repo)
618618

619619
/*
620620
* Note: This function is private for a reason, the '.gitmodules' file should
621-
* not be used as as a mechanism to retrieve arbitrary configuration stored in
621+
* not be used as a mechanism to retrieve arbitrary configuration stored in
622622
* the repository.
623623
*
624624
* 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)