Skip to content

Commit f745acb

Browse files
tacker66gitster
authored andcommitted
Documentation: typofixes
In addition to fixing trivial and obvious typos, be careful about the following points: - Spell ASCII, URL and CRC in ALL CAPS; - Spell Linux as Capitalized; - Do not omit periods in "i.e." and "e.g.". Signed-off-by: Thomas Ackermann <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dd83521 commit f745acb

19 files changed

+30
-30
lines changed

Documentation/RelNotes/2.2.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ UI, Workflows & Features
8585
public repository really point the commits the pusher wanted to,
8686
without having to "trust" the server.
8787

88-
* "git interpret-trailers" is a new filter to programatically edit
88+
* "git interpret-trailers" is a new filter to programmatically edit
8989
the tail end of the commit log messages.
9090

9191
* "git help everyday" shows the "Everyday Git in 20 commands or so"

Documentation/config.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ gc.autopacklimit::
12101210
default value is 50. Setting this to 0 disables it.
12111211

12121212
gc.autodetach::
1213-
Make `git gc --auto` return immediately andrun in background
1213+
Make `git gc --auto` return immediately and run in background
12141214
if the system supports it. Default is true.
12151215

12161216
gc.packrefs::
@@ -1357,7 +1357,7 @@ gpg.program::
13571357
same command-line interface as GPG, namely, to verify a detached
13581358
signature, "gpg --verify $file - <$signature" is run, and the
13591359
program is expected to signal a good signature by exiting with
1360-
code 0, and to generate an ascii-armored detached signature, the
1360+
code 0, and to generate an ASCII-armored detached signature, the
13611361
standard input of "gpg -bsau $key" is fed with the contents to be
13621362
signed, and the program is expected to send the result to its
13631363
standard output.
@@ -1592,7 +1592,7 @@ http.useragent::
15921592
Can be overridden by the 'GIT_HTTP_USER_AGENT' environment variable.
15931593

15941594
http.<url>.*::
1595-
Any of the http.* options above can be applied selectively to some urls.
1595+
Any of the http.* options above can be applied selectively to some URLs.
15961596
For a config key to match a URL, each element of the config key is
15971597
compared to that of the URL, in the following order:
15981598
+
@@ -1631,8 +1631,8 @@ if the URL is `https://[email protected]/foo/bar` a config key match of
16311631
+
16321632
All URLs are normalized before attempting any matching (the password part,
16331633
if embedded in the URL, is always ignored for matching purposes) so that
1634-
equivalent urls that are simply spelled differently will match properly.
1635-
Environment variable settings always override any matches. The urls that are
1634+
equivalent URLs that are simply spelled differently will match properly.
1635+
Environment variable settings always override any matches. The URLs that are
16361636
matched against are those given directly to Git commands. This means any URLs
16371637
visited as a result of a redirection do not participate in matching.
16381638

Documentation/git-bisect-lk2009.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ developed and maintained during years or even tens of years by a lot
119119
of people. And as there are often many people who depend (sometimes
120120
critically) on such software, regressions are a really big problem.
121121

122-
One such software is the linux kernel. And if we look at the linux
122+
One such software is the Linux kernel. And if we look at the Linux
123123
kernel, we can see that a lot of time and effort is spent to fight
124124
regressions. The release cycle start with a 2 weeks long merge
125125
window. Then the first release candidate (rc) version is tagged. And
@@ -132,7 +132,7 @@ regressions. And this time is more than 80% of the release cycle
132132
time. But this is not the end of the fight yet, as of course it
133133
continues after the release.
134134

135-
And then this is what Ingo Molnar (a well known linux kernel
135+
And then this is what Ingo Molnar (a well known Linux kernel
136136
developer) says about his use of git bisect:
137137

138138
_____________

Documentation/git-clean.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ clean::
9898
filter by pattern::
9999

100100
This shows the files and directories to be deleted and issues an
101-
"Input ignore patterns>>" prompt. You can input space-seperated
101+
"Input ignore patterns>>" prompt. You can input space-separated
102102
patterns to exclude files and directories from deletion.
103103
E.g. "*.c *.h" will excludes files end with ".c" and ".h" from
104104
deletion. When you are satisfied with the filtered result, press

Documentation/git-cvsimport.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Problems related to tags:
219219
* Multiple tags on the same revision are not imported.
220220

221221
If you suspect that any of these issues may apply to the repository you
222-
want to imort, consider using cvs2git:
222+
want to import, consider using cvs2git:
223223

224224
* cvs2git (part of cvs2svn), `http://subversion.apache.org/`
225225

Documentation/git-cvsserver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ to allow writes to, for example:
110110
authdb = /etc/cvsserver/passwd
111111

112112
------
113-
The format of these files is username followed by the crypted password,
113+
The format of these files is username followed by the encrypted password,
114114
for example:
115115

116116
------

Documentation/git-filter-branch.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ characteristics:
451451

452452
* By default The BFG takes full advantage of multi-core machines,
453453
cleansing commit file-trees in parallel. git-filter-branch cleans
454-
commits sequentially (ie in a single-threaded manner), though it
455-
_is_ possible to write filters that include their own parallellism,
454+
commits sequentially (i.e. in a single-threaded manner), though it
455+
_is_ possible to write filters that include their own parallelism,
456456
in the scripts executed against each commit.
457457

458458
* The http://rtyley.github.io/bfg-repo-cleaner/#examples[command options]

Documentation/git-interpret-trailers.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ git-interpret-trailers(1)
33

44
NAME
55
----
6-
git-interpret-trailers - help add stuctured information into commit messages
6+
git-interpret-trailers - help add structured information into commit messages
77

88
SYNOPSIS
99
--------
@@ -43,7 +43,7 @@ This means that the trimmed <token> and <value> will be separated by
4343

4444
By default the new trailer will appear at the end of all the existing
4545
trailers. If there is no existing trailer, the new trailer will appear
46-
after the commit message part of the ouput, and, if there is no line
46+
after the commit message part of the output, and, if there is no line
4747
with only spaces at the end of the commit message part, one blank line
4848
will be added before the new trailer.
4949

@@ -56,7 +56,7 @@ minus signs start the patch part of the message.
5656

5757
When reading trailers, there can be whitespaces before and after the
5858
token, the separator and the value. There can also be whitespaces
59-
indide the token and the value.
59+
inside the token and the value.
6060

6161
Note that 'trailers' do not follow and are not intended to follow many
6262
rules for RFC 822 headers. For example they do not follow the line

Documentation/git-rev-parse.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ shown. If the pattern does not contain a globbing character (`?`,
184184
consider. Repetitions of this option accumulate exclusion patterns
185185
up to the next `--all`, `--branches`, `--tags`, `--remotes`, or
186186
`--glob` option (other options or arguments do not clear
187-
accumlated patterns).
187+
accumulated patterns).
188188
+
189189
The patterns given should not begin with `refs/heads`, `refs/tags`, or
190190
`refs/remotes` when applied to `--branches`, `--tags`, or `--remotes`,

Documentation/git-svn.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ COMMANDS
7070
--username=<user>;;
7171
For transports that SVN handles authentication for (http,
7272
https, and plain svn), specify the username. For other
73-
transports (eg svn+ssh://), you must include the username in
74-
the URL, eg svn+ssh://[email protected]/project
73+
transports (e.g. svn+ssh://), you must include the username in
74+
the URL, e.g. svn+ssh://[email protected]/project
7575
--prefix=<prefix>;;
7676
This allows one to specify a prefix which is prepended
7777
to the names of remotes if trunk/branches/tags are

0 commit comments

Comments
 (0)