Skip to content

Commit bbb0c35

Browse files
initialcommit-iogitster
authored andcommitted
Documentation: clean up various typos in technical docs
Used GNU "aspell check <filename>" to review various technical documentation files with the default aspell dictionary. Ignored false-positives between american and british english. Signed-off-by: Jacob Stopak <[email protected]> Reviewed-by: Eric Sunshine <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 72991ff commit bbb0c35

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Documentation/technical/api-parse-options.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Subcommands are special in a couple of ways:
6060

6161
* All arguments following the subcommand are considered to be arguments of
6262
the subcommand, and, conversely, arguments meant for the subcommand may
63-
not preceed the subcommand.
63+
not precede the subcommand.
6464

6565
Therefore, if the options array contains at least one subcommand and
6666
`parse_options()` encounters the first dashless argument, it will either:

Documentation/technical/bundle-uri.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ expect that the process will end when all prerequisite commit OIDs in a
290290
thin bundle are already in the object database.
291291

292292
When using the `creationToken` heuristic, the client can avoid downloading
293-
any bundles if their creation tokenss are not larger than the stored
293+
any bundles if their creation tokens are not larger than the stored
294294
creation token. After fetching new bundles, Git updates this local
295295
creation token.
296296

@@ -319,7 +319,7 @@ Here are a few example error conditions:
319319
Git's other HTTP protocols in terms of handling specific 400-level
320320
errors.
321321

322-
* The server reports any other failure reponse.
322+
* The server reports any other failure response.
323323

324324
* The client receives data that is not parsable as a bundle or bundle list.
325325

@@ -447,7 +447,7 @@ created every hour, and then once a day those "hourly" bundles could be
447447
merged into a "daily" bundle. The daily bundles are merged into the
448448
oldest bundle after 30 days.
449449

450-
It is recommened that this bundle strategy is repeated with the `blob:none`
450+
It is recommended that this bundle strategy is repeated with the `blob:none`
451451
filter if clients of this repository are expecting to use blobless partial
452452
clones. This list of blobless bundles stays in the same list as the full
453453
bundles, but uses the `bundle.<id>.filter` key to separate the two groups.

Documentation/technical/commit-graph.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ Values 1-4 satisfy the requirements of parse_commit_gently().
4040

4141
There are two definitions of generation number:
4242
1. Corrected committer dates (generation number v2)
43-
2. Topological levels (generation nummber v1)
43+
2. Topological levels (generation number v1)
4444

4545
Define "corrected committer date" of a commit recursively as follows:
4646

4747
* A commit with no parents (a root commit) has corrected committer date
4848
equal to its committer date.
4949

5050
* A commit with at least one parent has corrected committer date equal to
51-
the maximum of its commiter date and one more than the largest corrected
51+
the maximum of its committer date and one more than the largest corrected
5252
committer date among its parents.
5353

5454
* As a special case, a root commit with timestamp zero has corrected commit

Documentation/technical/remembering-renames.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ considered to be "irrelevant". See for example the following commits:
407407
no longer relevant", 2021-03-13)
408408

409409
Relevance is always determined by what the _other_ side of history has
410-
done, in terms of modifing a file that our side renamed, or adding a
410+
done, in terms of modifying a file that our side renamed, or adding a
411411
file to a directory which our side renamed. This means that a path
412412
that is "irrelevant" when picking the first commit of a series in a
413413
rebase or cherry-pick, may suddenly become "relevant" when picking the

0 commit comments

Comments
 (0)