Skip to content

Commit b600691

Browse files
author
Vipul Kumar
committed
[Fix] add missing period mark
- After removing period mark from figure captions; some paragraph left with no period because those paragraph has only one period and that's because of figure caption (see #1444 (comment)). - End all bullet points with a period.
1 parent 37ad532 commit b600691

File tree

11 files changed

+36
-36
lines changed

11 files changed

+36
-36
lines changed

book/04-git-server/sections/hosted.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Doing so offers a number of advantages: a hosting site is generally quick to set
55
Even if you set up and run your own server internally, you may still want to use a public hosting site for your open source code – it's generally easier for the open source community to find and help you with.
66

77
These days, you have a huge number of hosting options to choose from, each with different advantages and disadvantages.
8-
To see an up-to-date list, check out the GitHosting page on the main Git wiki at https://git.wiki.kernel.org/index.php/GitHosting[]
8+
To see an up-to-date list, check out the GitHosting page on the main Git wiki at https://git.wiki.kernel.org/index.php/GitHosting[].
99

1010
We'll cover using GitHub in detail in <<ch06-github#ch06-github>>, as it is the largest Git host out there and you may need to interact with projects hosted on it in any case, but there are dozens more to choose from should you not want to set up your own Git server.

book/06-github/sections/2-contributing.asc

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ It is centered on the <<ch03-git-branching#_topic_branch>> workflow covered in <
3636

3737
Here's how it generally works:
3838

39-
1. Fork the project
39+
1. Fork the project.
4040
2. Create a topic branch from `master`.
4141
3. Make some commits to improve the project.
4242
4. Push this branch to your GitHub project.
@@ -107,12 +107,12 @@ To https://github.com/tonychacon/blink
107107
* [new branch] slow-blink -> slow-blink
108108
----
109109

110-
<1> Clone our fork of the project locally
111-
<2> Create a descriptive topic branch
112-
<3> Make our change to the code
113-
<4> Check that the change is good
114-
<5> Commit our change to the topic branch
115-
<6> Push our new topic branch back up to our GitHub fork
110+
<1> Clone our fork of the project locally.
111+
<2> Create a descriptive topic branch.
112+
<3> Make our change to the code.
113+
<4> Check that the change is good.
114+
<5> Commit our change to the topic branch.
115+
<6> Push our new topic branch back up to our GitHub fork.
116116

117117
Now if we go back to our fork on GitHub, we can see that GitHub noticed that we pushed a new topic branch up and presents us with a big green button to check out our changes and open a Pull Request to the original project.
118118

@@ -270,11 +270,11 @@ To https://github.com/tonychacon/blink
270270
ef4725c..3c8d735 slower-blink -> slow-blink
271271
----
272272

273-
<1> Add the original repository as a remote named ``upstream''
274-
<2> Fetch the newest work from that remote
275-
<3> Merge the main branch of that repository into your topic branch
276-
<4> Fix the conflict that occurred
277-
<5> Push back up to the same topic branch
273+
<1> Add the original repository as a remote named ``upstream''.
274+
<2> Fetch the newest work from that remote.
275+
<3> Merge the main branch of that repository into your topic branch.
276+
<4> Fix the conflict that occurred.
277+
<5> Push back up to the same topic branch.
278278

279279
Once you do that, the Pull Request will be automatically updated and re-checked to see if it merges cleanly.
280280

@@ -359,7 +359,7 @@ You can create a task list like this:
359359
- [ ] Document the code
360360
----
361361

362-
If we include this in the description of our Pull Request or Issue, we'll see it rendered like <<_eg_task_lists>>
362+
If we include this in the description of our Pull Request or Issue, we'll see it rendered like <<_eg_task_lists>>.
363363

364364
[[_eg_task_lists]]
365365
.Task lists rendered in a Markdown comment

book/06-github/sections/5-scripting.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ image::images/scripting-04-webhook-debug.png[Webhook debug]
107107

108108
The other great feature of this is that you can redeliver any of the payloads to test your service easily.
109109

110-
For more information on how to write webhooks and all the different event types you can listen for, go to the GitHub Developer documentation at https://developer.github.com/webhooks/
110+
For more information on how to write webhooks and all the different event types you can listen for, go to the GitHub Developer documentation at https://developer.github.com/webhooks/[].
111111

112112
==== The GitHub API
113113

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ echo 'Get history from blah blah blah' | git commit-tree 9c68fdc^{tree}
9494
The `commit-tree` command is one of a set of commands that are commonly referred to as 'plumbing' commands.
9595
These are commands that are not generally meant to be used directly, but instead are used by *other* Git commands to do smaller jobs.
9696
On occasions when we're doing weirder things like this, they allow us to do really low-level things but are not meant for daily use.
97-
You can read more about plumbing commands in <<ch10-git-internals#_plumbing_porcelain>>
97+
You can read more about plumbing commands in <<ch10-git-internals#_plumbing_porcelain>>.
9898
=====
9999

100100
image::images/replace3.png[]

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ In this particular case, we still have the *v3* version of our file in a commit
194194

195195
The `reset` command overwrites these three trees in a specific order, stopping when you tell it to:
196196

197-
1. Move the branch HEAD points to _(stop here if `--soft`)_
198-
2. Make the index look like HEAD _(stop here unless `--hard`)_
199-
3. Make the working directory look like the index
197+
1. Move the branch HEAD points to _(stop here if `--soft`)_.
198+
2. Make the index look like HEAD _(stop here unless `--hard`)_.
199+
3. Make the working directory look like the index.
200200

201201
==== Reset With a Path
202202

@@ -208,8 +208,8 @@ But the index and working directory _can_ be partially updated, so reset proceed
208208
So, assume we run `git reset file.txt`.
209209
This form (since you did not specify a commit SHA-1 or branch, and you didn't specify `--soft` or `--hard`) is shorthand for `git reset --mixed HEAD file.txt`, which will:
210210

211-
1. Move the branch HEAD points to _(skipped)_
212-
2. Make the index look like HEAD _(stop here)_
211+
1. Move the branch HEAD points to _(skipped)_.
212+
2. Make the index look like HEAD _(stop here)_.
213213

214214
So it essentially just copies `file.txt` from HEAD to the index.
215215

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -732,11 +732,11 @@ $ git commit -m "Merge Tom's Changes" <5>
732732
[master 10d2c60] Merge Tom's Changes
733733
----
734734

735-
<1> First we resolve the conflict
736-
<2> Then we go back to the main project directory
737-
<3> We can check the SHA-1s again
738-
<4> Resolve the conflicted submodule entry
739-
<5> Commit our merge
735+
<1> First we resolve the conflict.
736+
<2> Then we go back to the main project directory.
737+
<3> We can check the SHA-1s again.
738+
<4> Resolve the conflicted submodule entry.
739+
<5> Commit our merge.
740740

741741
It can be a bit confusing, but it's really not very hard.
742742

book/09-git-and-other-scms/sections/client-bzr.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The two features are:
9393

9494
As a consequence, there are two different situations to consider:
9595

96-
1. If the `.bzrignore` file does not contain any of these two specific prefixes, then you can simply make a symbolic link to it in the repository: `ln -s .bzrignore .git/info/exclude`
96+
1. If the `.bzrignore` file does not contain any of these two specific prefixes, then you can simply make a symbolic link to it in the repository: `ln -s .bzrignore .git/info/exclude`.
9797
2. Otherwise, you must create the `.git/info/exclude` file and adapt it to ignore exactly the same files in `.bzrignore`.
9898

9999
Whatever the case is, you will have to remain vigilant against any change of `.bzrignore` to make sure that the `.git/info/exclude` file always reflects `.bzrignore`.

book/A-git-in-other-environments/sections/powershell.asc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ With `RemoteSigned`, only scripts having the `ZoneIdentifier` set to `Internet`
2121
If you're an administrator and want to set it for all users on that machine, use `-Scope LocalMachine`.
2222
If you're a normal user, without administrative rights, you can use `-Scope CurrentUser` to set it only for you.
2323

24-
More about PowerShell Scopes: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_scopes[]
24+
More about PowerShell Scopes: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_scopes[].
2525

26-
More about PowerShell ExecutionPolicy: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy[]
26+
More about PowerShell ExecutionPolicy: https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy[].
2727

2828
To set the value of `ExecutionPolicy` to `RemoteSigned` for all users use the next command:
2929

@@ -36,7 +36,7 @@ To set the value of `ExecutionPolicy` to `RemoteSigned` for all users use the ne
3636

3737
If you have at least PowerShell 5 or PowerShell 4 with PackageManagement installed, you can use the package manager to install posh-git for you.
3838

39-
More information about PowerShell Gallery: https://docs.microsoft.com/en-us/powershell/scripting/gallery/overview[]
39+
More information about PowerShell Gallery: https://docs.microsoft.com/en-us/powershell/scripting/gallery/overview[].
4040

4141
[source,powershell]
4242
----
@@ -83,4 +83,4 @@ Then import the module using the full path to the `posh-git.psd1` file:
8383
This will add the proper line to your `profile.ps1` file, and posh-git will be active the next time you open PowerShell.
8484

8585
For a description of the Git status summary information displayed in the prompt see: https://github.com/dahlbyk/posh-git/blob/master/README.md#git-status-summary-information[]
86-
For more details on how to customize your posh-git prompt see: https://github.com/dahlbyk/posh-git/blob/master/README.md#customization-variables[]
86+
For more details on how to customize your posh-git prompt see: https://github.com/dahlbyk/posh-git/blob/master/README.md#customization-variables[].

book/A-git-in-other-environments/sections/sublimetext.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ The features are:
1111
* You can use part of the Sublime Merge git client functionality from within Sublime Text.
1212
(This requires that Sublime Merge is installed. See: https://www.sublimemerge.com/[])
1313
14-
The official documentation for Sublime Text can be found here: https://www.sublimetext.com/docs/3/git_integration.html[]
14+
The official documentation for Sublime Text can be found here: https://www.sublimetext.com/docs/3/git_integration.html[].

book/A-git-in-other-environments/sections/visualstudiocode.asc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ The main features are:
1616
** Resolve merge conflicts.
1717
** View diffs.
1818
* With an extension, you can also handle GitHub Pull Requests:
19-
https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github[]
19+
https://marketplace.visualstudio.com/items?itemName=GitHub.vscode-pull-request-github[].
2020
21-
The official documentation can be found here: https://code.visualstudio.com/Docs/editor/versioncontrol[]
21+
The official documentation can be found here: https://code.visualstudio.com/Docs/editor/versioncontrol[].

0 commit comments

Comments
 (0)