Skip to content

Commit 0def712

Browse files
committed
Merge branch 'ob/typofixes'
* ob/typofixes: typofix: in-code comments typofix: documentation typofix: release notes
2 parents 4274cdf + 749f763 commit 0def712

22 files changed

+38
-38
lines changed

Documentation/RelNotes/1.7.10.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Fixes since v1.7.10
1414
not exclude them and tried to apply funny patches only to fail.
1515

1616
* "git blame" started missing quite a few changes from the origin
17-
since we stopped using the diff minimalization by default in v1.7.2
17+
since we stopped using the diff minimization by default in v1.7.2
1818
era.
1919

2020
* When PATH contains an unreadable directory, alias expansion code

Documentation/RelNotes/1.7.5.4.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Fixes since v1.7.5.3
55
--------------------
66

77
* The single-key mode of "git add -p" was easily fooled into thinking
8-
that it was told to add everthing ('a') when up-arrow was pressed by
8+
that it was told to add everything ('a') when up-arrow was pressed by
99
mistake.
1010

1111
* Setting a git command that uses custom configuration via "-c var=val"

Documentation/RelNotes/1.7.8.2.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ Fixes since v1.7.8.1
1212
* The configuration file parser used for sizes (e.g. bigFileThreshold)
1313
did not correctly interpret 'g' suffix.
1414

15-
* The replacement implemention for snprintf used on platforms with
15+
* The replacement implementation for snprintf used on platforms with
1616
native snprintf that is broken did not use va_copy correctly.
1717

1818
* LF-to-CRLF streaming filter replaced all LF with CRLF, which might
19-
be techinically correct but not friendly to people who are trying
19+
be technically correct but not friendly to people who are trying
2020
to recover from earlier mistakes of using CRLF in the repository
2121
data in the first place. It now refrains from doing so for LF that
2222
follows a CR.

Documentation/RelNotes/1.7.8.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Updates since v1.7.7
99
* Updates to bash completion scripts.
1010

1111
* The build procedure has been taught to take advantage of computed
12-
dependency automatically when the complier supports it.
12+
dependency automatically when the compiler supports it.
1313

1414
* The date parser now accepts timezone designators that lack minutes
1515
part and also has a colon between "hh:mm".
@@ -31,7 +31,7 @@ Updates since v1.7.7
3131
* Variants of "git cherry-pick" and "git revert" that take multiple
3232
commits learned to "--continue" and "--abort".
3333

34-
* "git daemon" gives more human readble error messages to clients
34+
* "git daemon" gives more human readable error messages to clients
3535
using ERR packets when appropriate.
3636

3737
* Errors at the network layer is logged by "git daemon".

Documentation/RelNotes/1.8.2.1.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Fixes since v1.8.2
4949
common prefix and suffix between the two filenames overlapped.
5050

5151
* "git submodule update", when recursed into sub-submodules, did not
52-
acccumulate the prefix paths.
52+
accumulate the prefix paths.
5353

5454
* "git am $maildir/" applied messages in an unexpected order; sort
5555
filenames read from the maildir/ in a way that is more likely to

Documentation/RelNotes/1.8.2.2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ Fixes since v1.8.2.1
5858
conflicts have been applied.
5959

6060
* "git bundle" did not like a bundle created using a commit without
61-
any message as its one of the prerequistes.
61+
any message as its one of the prerequisites.

Documentation/git-bisect-lk2009.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ So git bisect is unconditional goodness - and feel free to quote that
13201320
;-)
13211321
_____________
13221322

1323-
Acknowledgements
1323+
Acknowledgments
13241324
----------------
13251325

13261326
Many thanks to Junio Hamano for his help in reviewing this paper, for

Documentation/git-rev-parse.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ eval "set -- $(git rev-parse --sq --prefix "$prefix" "$@")"
8383
+
8484
If you want to make sure that the output actually names an object in
8585
your object database and/or can be used as a specific type of object
86-
you require, you can add "^{type}" peeling operator to the parmeter.
86+
you require, you can add "^{type}" peeling operator to the parameter.
8787
For example, `git rev-parse "$VAR^{commit}"` will make sure `$VAR`
8888
names an existing object that is a commit-ish (i.e. a commit, or an
8989
annotated tag that points at a commit). To make sure that `$VAR`

Documentation/gitweb.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ repositories, you can configure Apache like this:
504504

505505
The above configuration expects your public repositories to live under
506506
'/pub/git' and will serve them as `http://git.domain.org/dir-under-pub-git`,
507-
both as cloneable Git URL and as browseable gitweb interface. If you then
507+
both as clonable Git URL and as browseable gitweb interface. If you then
508508
start your linkgit:git-daemon[1] with `--base-path=/pub/git --export-all`
509509
then you can even use the `git://` URL with exactly the same path.
510510

Documentation/howto/revert-branch-rebase.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ How to revert an existing commit
1212
================================
1313

1414
One of the changes I pulled into the 'master' branch turns out to
15-
break building Git with GCC 2.95. While they were well intentioned
15+
break building Git with GCC 2.95. While they were well-intentioned
1616
portability fixes, keeping things working with gcc-2.95 was also
1717
important. Here is what I did to revert the change in the 'master'
1818
branch and to adjust the 'pu' branch, using core Git tools and

0 commit comments

Comments
 (0)