Skip to content

Commit 2c2c0c9

Browse files
authored
Merge pull request #655 from crd/update_website
Replace all instances of 'web site' with 'website'
2 parents 08c019d + 9c5bd6a commit 2c2c0c9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

book/01-introduction/sections/installing.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ $ sudo ln -s /usr/bin/db2x_docbook2texi /usr/bin/docbook2x-texi
9696
due to binary name differences.
9797

9898
When you have all the necessary dependencies, you can go ahead and grab the latest tagged release tarball from several places.
99-
You can get it via the Kernel.org site, at https://www.kernel.org/pub/software/scm/git[], or the mirror on the GitHub web site, at https://github.com/git/git/releases[].
99+
You can get it via the Kernel.org site, at https://www.kernel.org/pub/software/scm/git[], or the mirror on the GitHub website, at https://github.com/git/git/releases[].
100100
It's generally a little clearer what the latest version is on the GitHub page, but the kernel.org page also has release signatures if you want to verify your download.
101101

102102
Then, compile and install:

book/03-git-branching/sections/basic-branching-and-merging.asc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Let's go through a simple example of branching and merging with a workflow that you might use in the real world.
44
You'll follow these steps:
55

6-
. Do work on a web site.
6+
. Do work on a website.
77
. Create a branch for a new story you're working on.
88
. Do some work in that branch.
99

@@ -44,7 +44,7 @@ $ git checkout iss53
4444
.Creating a new branch pointer
4545
image::images/basic-branching-2.png[Creating a new branch pointer.]
4646

47-
You work on your web site and do some commits.
47+
You work on your website and do some commits.
4848
Doing so moves the `iss53` branch forward, because you have it checked out (that is, your `HEAD` is pointing to it):
4949

5050
[source,console]
@@ -56,7 +56,7 @@ $ git commit -a -m 'added a new footer [issue 53]'
5656
.The iss53 branch has moved forward with your work
5757
image::images/basic-branching-3.png[The iss53 branch has moved forward with your work.]
5858

59-
Now you get the call that there is an issue with the web site, and you need to fix it immediately.
59+
Now you get the call that there is an issue with the website, and you need to fix it immediately.
6060
With Git, you don't have to deploy your fix along with the `iss53` changes you've made, and you don't have to put a lot of effort into reverting those changes before you can work on applying your fix to what is in production.
6161
All you have to do is switch back to your `master` branch.
6262

book/07-git-tools/sections/submodules.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Perhaps it’s a library that a third party developed or that you’re developin
66
A common issue arises in these scenarios: you want to be able to treat the two projects as separate yet still be able to use one from within the other.
77

88
Here’s an example.
9-
Suppose you’re developing a web site and creating Atom feeds.
9+
Suppose you’re developing a website and creating Atom feeds.
1010
Instead of writing your own Atom-generating code, you decide to use a library.
1111
You’re likely to have to either include this code from a shared library like a CPAN install or Ruby gem, or copy the source code into your own project tree.
1212
The issue with including the library is that it’s difficult to customize the library in any way and often more difficult to deploy it, because you need to make sure every client has that library available.

0 commit comments

Comments
 (0)