Skip to content

Commit 6cc668c

Browse files
newrengitster
authored andcommitted
documentation: fix singular vs. plural
Diff best viewed with --color-diff. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 401a4e2 commit 6cc668c

29 files changed

+36
-36
lines changed

Documentation/ToolsForGit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tools for developing Git
55
[[summary]]
66
== Summary
77

8-
This document gathers tips, scripts and configuration file to help people
8+
This document gathers tips, scripts and configuration files to help people
99
working on Git's codebase use their favorite tools while following Git's
1010
coding style.
1111

Documentation/config/advice.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ advice.*::
6363
the template shown when writing commit messages in
6464
linkgit:git-commit[1], and in the help message shown
6565
by linkgit:git-switch[1] or
66-
linkgit:git-checkout[1] when switching branch.
66+
linkgit:git-checkout[1] when switching branches.
6767
statusUoption::
6868
Advise to consider using the `-u` option to linkgit:git-status[1]
6969
when the command takes more than 2 seconds to enumerate untracked

Documentation/config/column.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ column.status::
5151
See `column.ui` for details.
5252

5353
column.tag::
54-
Specify whether to output tag listing in `git tag` in columns.
54+
Specify whether to output tag listings in `git tag` in columns.
5555
See `column.ui` for details.

Documentation/config/diff.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
diff.autoRefreshIndex::
22
When using 'git diff' to compare with work tree
3-
files, do not consider stat-only change as changed.
3+
files, do not consider stat-only changes as changed.
44
Instead, silently run `git update-index --refresh` to
55
update the cached stat information for paths whose
66
contents in the work tree match the contents in the

Documentation/config/fetch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ fetch.pruneTags::
5353
fetch.output::
5454
Control how ref update status is printed. Valid values are
5555
`full` and `compact`. Default value is `full`. See the
56-
OUTPUT section in linkgit:git-fetch[1] for detail.
56+
OUTPUT section in linkgit:git-fetch[1] for details.
5757

5858
fetch.negotiationAlgorithm::
5959
Control how information about the commits in the local repository

Documentation/config/mailinfo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mailinfo.scissors::
22
If true, makes linkgit:git-mailinfo[1] (and therefore
33
linkgit:git-am[1]) act by default as if the --scissors option
4-
was provided on the command-line. When active, this features
4+
was provided on the command-line. When active, this feature
55
removes everything from the message body before a scissors
66
line (i.e. consisting mainly of ">8", "8<" and "-").

Documentation/config/rerere.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
rerere.autoUpdate::
22
When set to true, `git-rerere` updates the index with the
33
resulting contents after it cleanly resolves conflicts using
4-
previously recorded resolution. Defaults to false.
4+
previously recorded resolutions. Defaults to false.
55

66
rerere.enabled::
77
Activate recording of resolved conflicts, so that identical

Documentation/config/user.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author.email::
55
committer.name::
66
committer.email::
77
The `user.name` and `user.email` variables determine what ends
8-
up in the `author` and `committer` field of commit
8+
up in the `author` and `committer` fields of commit
99
objects.
1010
If you need the `author` or `committer` to be different, the
1111
`author.name`, `author.email`, `committer.name` or

Documentation/config/versionsort.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ among those other suffixes. E.g. if the suffixes "-rc", "", "-ck" and
2424
are listed first, followed by "v4.8", then "v4.8-ckX" and finally
2525
"v4.8-bfsX".
2626
+
27-
If more than one suffixes match the same tagname, then that tagname will
27+
If more than one suffix matches the same tagname, then that tagname will
2828
be sorted according to the suffix which starts at the earliest position in
29-
the tagname. If more than one different matching suffixes start at
29+
the tagname. If more than one different matching suffix starts at
3030
that earliest position, then that tagname will be sorted according to the
3131
longest of those suffixes.
3232
The sorting order between different suffixes is undefined if they are

Documentation/diff-generate-patch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ or like this (when the `--cc` option is used):
142142
+
143143
The `mode <mode>,<mode>..<mode>` line appears only if at least one of
144144
the <mode> is different from the rest. Extended headers with
145-
information about detected contents movement (renames and
145+
information about detected content movement (renames and
146146
copying detection) are designed to work with diff of two
147147
<tree-ish> and are not used by combined diff format.
148148

0 commit comments

Comments
 (0)