Skip to content

Commit 7bceebf

Browse files
committed
Fix typos.
1 parent 112815e commit 7bceebf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

en/branch.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ With this magic word, the files in your directory suddenly shapeshift from one v
1616

1717
=== The Boss Key ===
1818

19-
Ever played one of those games where at the push of a button (``the boss key''), the screen would instantly display a spreadsheet or something? So if the boss walked in the office while you were playing the game you could quickly hide it away?
19+
Ever played one of those games where at the push of a button (``the boss key''), the screen would instantly display a spreadsheet or something? So if the boss walked into the office while you were playing the game you could quickly hide it away?
2020

2121
In some directory:
2222

en/clone.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Start the Git daemon if necessary:
3838

3939
$ git daemon --detach # it may already be running
4040

41-
For Git hosting services, follow the instructions to setup the initially
41+
For Git hosting services, follow the instructions to set up the initially
4242
empty Git repository. Typically one fills in a form on a webpage.
4343

4444
'Push' your project to the central server with:

en/drawbacks.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The current implementation of Git, rather than its design, is to blame for this
8080

8181
=== Initial Commit ===
8282

83-
A stereotypical computer scientist counts from 0, rather than 1. Unfortunately, with respect to commits, git does not adhere to this convention. Many commands are unfriendly before the initial commit. Additionally, some corner cases must be handled specially, such as rebasing a branch with a different initial commit.
83+
A stereotypical computer scientist counts from 0, rather than 1. Unfortunately, with respect to commits, Git does not adhere to this convention. Many commands are unfriendly before the initial commit. Additionally, some corner cases must be handled specially, such as rebasing a branch with a different initial commit.
8484

8585
Git would benefit from defining the zero commit: as soon as a repository is constructed, HEAD would be set to the string consisting of 20 zero bytes. This special commit represents an empty tree, with no parent, at some time predating all Git repositories.
8686

en/multiplayer.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Now you can publish your latest edits via SSH from any clone:
4141

4242
$ git push web.server:/path/to/proj.git master
4343

44-
and anybody can get your project with:
44+
and anyone can get your project with:
4545

4646
$ git clone http://web.server/proj.git
4747

en/translate.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Clone the source, then create a directory corresponding to the target
88
language's IETF tag: see
99
http://www.w3.org/International/articles/language-tags/Overview.en.php[the W3C
1010
article on internationalization]. For example, English is "en" and Japanese is
11-
"ja". In the new directory, and translate the +txt+ files from the "en"
11+
"ja". In the new directory, translate the +txt+ files from the "en"
1212
subdirectory.
1313

1414
For instance, to translate the guide into http://en.wikipedia.org/wiki/Klingon_language[Klingon], you might type:

0 commit comments

Comments
 (0)