[PATCH 1/1] doc: fix repeated words

2019-08-09 Thread Mark Rushakoff via GitGitGadget
From: Mark Rushakoff Inspired by 21416f0a07 ("restore: fix typo in docs", 2019-08-03), I ran "git grep -E '(\b[a-zA-Z]+) \1\b' -- Documentation/" to find other cases where words were duplicated, e.g. "the the", and in most cases removed one of the repeated words. There were many false positives

[PATCH 0/1] doc: fix repeated words

2019-08-09 Thread Mark Rushakoff via GitGitGadget
Inspired by 21416f0a07 ("restore: fix typo in docs", 2019-08-03), I ran "git grep -E '(\b[a-zA-Z]+) \1\b' -- Documentation/" to find other cases where words were duplicated, e.g. "the the", and in most cases removed one of the repeated words. Mark Rushakoff (1): doc: fix repeated words Documen

[PATCH 0/1] Fix two documentation typos

2019-08-02 Thread Mark Rushakoff via GitGitGadget
I noticed a couple typos while reading through some manpages. First was "...if it is does not..." which just contained an extraneous "is". Then I noticed a "can not" and updated that and other occurrences in Documentation to cannot. The glossary sentence with "can not" was "Consequently, an obje

[PATCH 1/1] doc: typo: s/can not/cannot/ and s/is does/does/

2019-08-02 Thread Mark Rushakoff via GitGitGadget
From: Mark Rushakoff "Can not" suggests one has the option to not do something, whereas "cannot" more strongly suggests something is disallowed or impossible. Noticed "can not", mistakenly used instead of "cannot" in git help glossary, then ran git grep 'can not' and found many other instances.