git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH 0/2] Fix various typos in regular and technical docs
@ 2022-09-20  2:45 Jacob Stopak
  2022-09-20  2:45 ` [PATCH 1/2] Documentation: clean up a few misspelled word typos Jacob Stopak
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jacob Stopak @ 2022-09-20  2:45 UTC (permalink / raw)
  To: git; +Cc: Jacob Stopak

Used GNU "aspell check <filename>" to review various documentation
files with the default aspell dictionary. Ignored false-positives
between american and british english.

Jacob Stopak (2):
  Documentation: clean up a few misspelled word typos
  Documentation: clean up various typos in technical docs

 Documentation/MyFirstContribution.txt           | 2 +-
 Documentation/MyFirstObjectWalk.txt             | 2 +-
 Documentation/git.txt                           | 2 +-
 Documentation/technical/api-parse-options.txt   | 2 +-
 Documentation/technical/bundle-uri.txt          | 6 +++---
 Documentation/technical/commit-graph.txt        | 4 ++--
 Documentation/technical/remembering-renames.txt | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)


base-commit: dda7228a83e2e9ff584bf6adbf55910565b41e14
-- 
2.37.3


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH 1/2] Documentation: clean up a few misspelled word typos
  2022-09-20  2:45 [PATCH 0/2] Fix various typos in regular and technical docs Jacob Stopak
@ 2022-09-20  2:45 ` Jacob Stopak
  2022-09-20  2:45 ` [PATCH 2/2] Documentation: clean up various typos in technical docs Jacob Stopak
  2022-09-20  3:38 ` [PATCH 0/2] Fix various typos in regular and " Eric Sunshine
  2 siblings, 0 replies; 5+ messages in thread
From: Jacob Stopak @ 2022-09-20  2:45 UTC (permalink / raw)
  To: git; +Cc: Jacob Stopak

Used GNU "aspell check <filename>" to review various documentation
files with the default aspell dictionary. Ignored false-positives
between american and british english.

Signed-off-by: Jacob Stopak <jacob@initialcommit.io>
---
 Documentation/MyFirstContribution.txt | 2 +-
 Documentation/MyFirstObjectWalk.txt   | 2 +-
 Documentation/git.txt                 | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/MyFirstContribution.txt b/Documentation/MyFirstContribution.txt
index 1da15d9ad4..1a4be8ee0a 100644
--- a/Documentation/MyFirstContribution.txt
+++ b/Documentation/MyFirstContribution.txt
@@ -1160,7 +1160,7 @@ all named like `v2-000n-my-commit-subject.patch`. `-v2` will also format
 your patches by prefixing them with "[PATCH v2]" instead of "[PATCH]",
 and your range-diff will be prefaced with "Range-diff against v1".
 
-Afer you run this command, `format-patch` will output the patches to the `psuh/`
+After you run this command, `format-patch` will output the patches to the `psuh/`
 directory, alongside the v1 patches. Using a single directory makes it easy to
 refer to the old v1 patches while proofreading the v2 patches, but you will need
 to be careful to send out only the v2 patches. We will use a pattern like
diff --git a/Documentation/MyFirstObjectWalk.txt b/Documentation/MyFirstObjectWalk.txt
index 8d9e85566e..eee513e86f 100644
--- a/Documentation/MyFirstObjectWalk.txt
+++ b/Documentation/MyFirstObjectWalk.txt
@@ -534,7 +534,7 @@ the arguments to `traverse_commit_list()`.
 - `void *show_data`: A context buffer which is passed in turn to `show_commit`
   and `show_object`.
 
-In addition, `traverse_commit_list_filtered()` has an additional paramter:
+In addition, `traverse_commit_list_filtered()` has an additional parameter:
 
 - `struct oidset *omitted`: A linked-list of object IDs which the provided
   filter caused to be omitted.
diff --git a/Documentation/git.txt b/Documentation/git.txt
index 0ef7f5e4ec..0c15ef3a8e 100644
--- a/Documentation/git.txt
+++ b/Documentation/git.txt
@@ -344,7 +344,7 @@ Repository, command and file interfaces
 
 This documentation discusses repository and command interfaces which
 users are expected to interact with directly. See `--user-formats` in
-linkgit:git-help[1] for more details on the critera.
+linkgit:git-help[1] for more details on the criteria.
 
 include::cmds-userinterfaces.txt[]
 
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] Documentation: clean up various typos in technical docs
  2022-09-20  2:45 [PATCH 0/2] Fix various typos in regular and technical docs Jacob Stopak
  2022-09-20  2:45 ` [PATCH 1/2] Documentation: clean up a few misspelled word typos Jacob Stopak
@ 2022-09-20  2:45 ` Jacob Stopak
  2022-09-20  3:38 ` [PATCH 0/2] Fix various typos in regular and " Eric Sunshine
  2 siblings, 0 replies; 5+ messages in thread
From: Jacob Stopak @ 2022-09-20  2:45 UTC (permalink / raw)
  To: git; +Cc: Jacob Stopak

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 <jacob@initialcommit.io>
---
 Documentation/technical/api-parse-options.txt   | 2 +-
 Documentation/technical/bundle-uri.txt          | 6 +++---
 Documentation/technical/commit-graph.txt        | 4 ++--
 Documentation/technical/remembering-renames.txt | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/Documentation/technical/api-parse-options.txt b/Documentation/technical/api-parse-options.txt
index c2a5e42914..61fa6ee167 100644
--- a/Documentation/technical/api-parse-options.txt
+++ b/Documentation/technical/api-parse-options.txt
@@ -60,7 +60,7 @@ Subcommands are special in a couple of ways:
 
 * All arguments following the subcommand are considered to be arguments of
   the subcommand, and, conversely, arguments meant for the subcommand may
-  not preceed the subcommand.
+  not precede the subcommand.
 
 Therefore, if the options array contains at least one subcommand and
 `parse_options()` encounters the first dashless argument, it will either:
diff --git a/Documentation/technical/bundle-uri.txt b/Documentation/technical/bundle-uri.txt
index c25c42378a..8939655fc0 100644
--- a/Documentation/technical/bundle-uri.txt
+++ b/Documentation/technical/bundle-uri.txt
@@ -290,7 +290,7 @@ expect that the process will end when all prerequisite commit OIDs in a
 thin bundle are already in the object database.
 
 When using the `creationToken` heuristic, the client can avoid downloading
-any bundles if their creation tokenss are not larger than the stored
+any bundles if their creation tokens are not larger than the stored
 creation token. After fetching new bundles, Git updates this local
 creation token.
 
@@ -319,7 +319,7 @@ Here are a few example error conditions:
   Git's other HTTP protocols in terms of handling specific 400-level
   errors.
 
-* The server reports any other failure reponse.
+* The server reports any other failure response.
 
 * The client receives data that is not parsable as a bundle or bundle list.
 
@@ -447,7 +447,7 @@ created every hour, and then once a day those "hourly" bundles could be
 merged into a "daily" bundle. The daily bundles are merged into the
 oldest bundle after 30 days.
 
-It is recommened that this bundle strategy is repeated with the `blob:none`
+It is recommended that this bundle strategy is repeated with the `blob:none`
 filter if clients of this repository are expecting to use blobless partial
 clones. This list of blobless bundles stays in the same list as the full
 bundles, but uses the `bundle.<id>.filter` key to separate the two groups.
diff --git a/Documentation/technical/commit-graph.txt b/Documentation/technical/commit-graph.txt
index f05e7bda1a..90c9760c23 100644
--- a/Documentation/technical/commit-graph.txt
+++ b/Documentation/technical/commit-graph.txt
@@ -40,7 +40,7 @@ Values 1-4 satisfy the requirements of parse_commit_gently().
 
 There are two definitions of generation number:
 1. Corrected committer dates (generation number v2)
-2. Topological levels (generation nummber v1)
+2. Topological levels (generation number v1)
 
 Define "corrected committer date" of a commit recursively as follows:
 
@@ -48,7 +48,7 @@ Define "corrected committer date" of a commit recursively as follows:
     equal to its committer date.
 
  * A commit with at least one parent has corrected committer date equal to
-    the maximum of its commiter date and one more than the largest corrected
+    the maximum of its committer date and one more than the largest corrected
     committer date among its parents.
 
  * As a special case, a root commit with timestamp zero has corrected commit
diff --git a/Documentation/technical/remembering-renames.txt b/Documentation/technical/remembering-renames.txt
index af091a7556..1e34d91390 100644
--- a/Documentation/technical/remembering-renames.txt
+++ b/Documentation/technical/remembering-renames.txt
@@ -407,7 +407,7 @@ considered to be "irrelevant".  See for example the following commits:
 		no longer relevant", 2021-03-13)
 
 Relevance is always determined by what the _other_ side of history has
-done, in terms of modifing a file that our side renamed, or adding a
+done, in terms of modifying a file that our side renamed, or adding a
 file to a directory which our side renamed.  This means that a path
 that is "irrelevant" when picking the first commit of a series in a
 rebase or cherry-pick, may suddenly become "relevant" when picking the
-- 
2.37.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Fix various typos in regular and technical docs
  2022-09-20  2:45 [PATCH 0/2] Fix various typos in regular and technical docs Jacob Stopak
  2022-09-20  2:45 ` [PATCH 1/2] Documentation: clean up a few misspelled word typos Jacob Stopak
  2022-09-20  2:45 ` [PATCH 2/2] Documentation: clean up various typos in technical docs Jacob Stopak
@ 2022-09-20  3:38 ` Eric Sunshine
  2022-09-21 19:16   ` Junio C Hamano
  2 siblings, 1 reply; 5+ messages in thread
From: Eric Sunshine @ 2022-09-20  3:38 UTC (permalink / raw)
  To: Jacob Stopak; +Cc: Git List

On Mon, Sep 19, 2022 at 11:04 PM Jacob Stopak <jacob@initialcommit.io> wrote:
> Used GNU "aspell check <filename>" to review various documentation
> files with the default aspell dictionary. Ignored false-positives
> between american and british english.
>
> Jacob Stopak (2):
>   Documentation: clean up a few misspelled word typos
>   Documentation: clean up various typos in technical docs

The fixes in these two patches all look sensible. Consider this
Reviewed-by: <me> if my read-through is worth anything.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 0/2] Fix various typos in regular and technical docs
  2022-09-20  3:38 ` [PATCH 0/2] Fix various typos in regular and " Eric Sunshine
@ 2022-09-21 19:16   ` Junio C Hamano
  0 siblings, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2022-09-21 19:16 UTC (permalink / raw)
  To: Eric Sunshine; +Cc: Jacob Stopak, Git List

Eric Sunshine <sunshine@sunshineco.com> writes:

> On Mon, Sep 19, 2022 at 11:04 PM Jacob Stopak <jacob@initialcommit.io> wrote:
>> Used GNU "aspell check <filename>" to review various documentation
>> files with the default aspell dictionary. Ignored false-positives
>> between american and british english.
>>
>> Jacob Stopak (2):
>>   Documentation: clean up a few misspelled word typos
>>   Documentation: clean up various typos in technical docs
>
> The fixes in these two patches all look sensible. Consider this
> Reviewed-by: <me> if my read-through is worth anything.

Thanks, both.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-09-21 19:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-20  2:45 [PATCH 0/2] Fix various typos in regular and technical docs Jacob Stopak
2022-09-20  2:45 ` [PATCH 1/2] Documentation: clean up a few misspelled word typos Jacob Stopak
2022-09-20  2:45 ` [PATCH 2/2] Documentation: clean up various typos in technical docs Jacob Stopak
2022-09-20  3:38 ` [PATCH 0/2] Fix various typos in regular and " Eric Sunshine
2022-09-21 19:16   ` Junio C Hamano

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).