Skip to content

Commit ce14cc0

Browse files
newrengitster
authored andcommitted
documentation: fix subject/verb agreement
Diff best viewed with --color-diff. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 859a6d6 commit ce14cc0

25 files changed

+28
-28
lines changed

Documentation/CodingGuidelines

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ As for more concrete guidelines, just imitate the existing code
4040
contributing to). It is always preferable to match the _local_
4141
convention. New code added to Git suite is expected to match
4242
the overall style of existing code. Modifications to existing
43-
code is expected to match the style the surrounding code already
43+
code are expected to match the style the surrounding code already
4444
uses (even if it doesn't match the overall style of existing code).
4545

4646
But if you must have a list of rules, here are some language

Documentation/config/advice.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ advice.*::
55
+
66
--
77
ambiguousFetchRefspec::
8-
Advice shown when fetch refspec for multiple remotes map to
8+
Advice shown when fetch refspec for multiple remotes maps to
99
the same remote-tracking branch namespace and causes branch
1010
tracking set-up to fail.
1111
fetchShowForcedUpdates::

Documentation/config/alias.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ alias.*::
44
`git last` is equivalent to `git cat-file commit HEAD`. To avoid
55
confusion and troubles with script usage, aliases that
66
hide existing Git commands are ignored. Arguments are split by
7-
spaces, the usual shell quoting and escaping is supported.
7+
spaces, the usual shell quoting and escaping are supported.
88
A quote pair or a backslash can be used to quote them.
99
+
1010
Note that the first word of an alias does not necessarily have to be a

Documentation/config/fsck.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fsck.skipList::
4444
The path to a list of object names (i.e. one unabbreviated SHA-1 per
4545
line) that are known to be broken in a non-fatal way and should
4646
be ignored. On versions of Git 2.20 and later comments ('#'), empty
47-
lines, and any leading and trailing whitespace is ignored. Everything
47+
lines, and any leading and trailing whitespace are ignored. Everything
4848
but a SHA-1 per line will error out on older versions.
4949
+
5050
This feature is useful when an established project should be accepted

Documentation/config/gpg.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ gpg.<format>.program::
2525
gpg.minTrustLevel::
2626
Specifies a minimum trust level for signature verification. If
2727
this option is unset, then signature verification for merge
28-
operations require a key with at least `marginal` trust. Other
28+
operations requires a key with at least `marginal` trust. Other
2929
operations that perform signature verification require a key
3030
with at least `undefined` trust. Setting this option overrides
3131
the required trust-level for all operations. Supported values,

Documentation/config/maintenance.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ maintenance.strategy::
1212
then that value is used instead of the one provided by
1313
`maintenance.strategy`. The possible strategy strings are:
1414
+
15-
* `none`: This default setting implies no task are run at any schedule.
15+
* `none`: This default setting implies no tasks are run at any schedule.
1616
* `incremental`: This setting optimizes for performing small maintenance
1717
activities that do not delete any data. This does not schedule the `gc`
1818
task, but runs the `prefetch` and `commit-graph` tasks hourly, the

Documentation/config/status.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ status.showUntrackedFiles::
4747
contain only untracked files, are shown with the directory name
4848
only. Showing untracked files means that Git needs to lstat() all
4949
the files in the whole repository, which might be slow on some
50-
systems. So, this variable controls how the commands displays
50+
systems. So, this variable controls how the commands display
5151
the untracked files. Possible values are:
5252
+
5353
--

Documentation/fetch-options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ the current repository has the same history as the source repository.
4343
--update-shallow::
4444
By default when fetching from a shallow repository,
4545
`git fetch` refuses refs that require updating
46-
.git/shallow. This option updates .git/shallow and accept such
46+
.git/shallow. This option updates .git/shallow and accepts such
4747
refs.
4848

4949
--negotiation-tip=<commit|glob>::

Documentation/git-blame.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ at least once for each commit:
128128
- the filename in the commit that the line is attributed to.
129129
- the first line of the commit log message ("summary").
130130

131-
The contents of the actual line is output after the above
131+
The contents of the actual line are output after the above
132132
header, prefixed by a TAB. This is to allow adding more
133133
header elements later.
134134

Documentation/git-diff-tree.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ include::pretty-options.txt[]
107107
by omitting uninteresting hunks whose contents in the parents
108108
have only two variants and the merge result picks one of them
109109
without modification. When all hunks are uninteresting, the commit
110-
itself and the commit log message is not shown, just like in any other
110+
itself and the commit log message are not shown, just like in any other
111111
"empty diff" case.
112112

113113
--combined-all-paths::

0 commit comments

Comments
 (0)