Message ID | fb7a7573782ae8ba3bc5341d6aaee704af88fdcf.1623246878.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Use singular "they" when appropriate | expand |
Derrick Stolee via GitGitGadget wrote: > From: Derrick Stolee <dstolee@microsoft.com> > Replace these uses with "they/them" to ensure that these documentation > examples apply to all potential users without exception. This is not the main purpose of documentation. The main purpose is to convey useful information as accurately and readably as possible. > --- a/Documentation/SubmittingPatches > +++ b/Documentation/SubmittingPatches > @@ -372,10 +372,10 @@ If you like, you can put extra tags at the end: > the patch attempts to fix. > . `Acked-by:` says that the person who is more familiar with the area > the patch attempts to modify liked the patch. > -. `Reviewed-by:`, unlike the other tags, can only be offered by the > - reviewer and means that she is completely satisfied that the patch > - is ready for application. It is usually offered only after a > - detailed review. > +. `Reviewed-by:`, unlike the other tags, can only be offered by a > + reviewer when they are completely satisfied with the patch. It is > + offered only after reviews by reviewers who are known to be experts > + in the affected area by the community members. This is convoluted, but at least doesn't sound wrong. > --- a/Documentation/user-manual.txt > +++ b/Documentation/user-manual.txt > @@ -2792,7 +2792,7 @@ A fast-forward looks something like this: > > In some cases it is possible that the new head will *not* actually be > a descendant of the old head. For example, the developer may have > -realized she made a serious mistake, and decided to backtrack, > +realized they made a serious mistake, and decided to backtrack, This suffers from the same problem "the reviewer" above did: it's semantically singular. It doesn't sound grammatically right to many. Another solution is to use an indefinite or generic noun: "they" -> "a". the developer may have realized a serious mistake was made Of course it isn't a good style to use the passive voice, and we will be counting on the reader assuming who made mistake. But at least it's more grammatically correct than your version. So far a step in the wrong direction.
diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches index 55287d72e0ef..f519a8dfff7c 100644 --- a/Documentation/SubmittingPatches +++ b/Documentation/SubmittingPatches @@ -372,10 +372,10 @@ If you like, you can put extra tags at the end: the patch attempts to fix. . `Acked-by:` says that the person who is more familiar with the area the patch attempts to modify liked the patch. -. `Reviewed-by:`, unlike the other tags, can only be offered by the - reviewer and means that she is completely satisfied that the patch - is ready for application. It is usually offered only after a - detailed review. +. `Reviewed-by:`, unlike the other tags, can only be offered by a + reviewer when they are completely satisfied with the patch. It is + offered only after reviews by reviewers who are known to be experts + in the affected area by the community members. . `Tested-by:` is used to indicate that the person applied the patch and found it to have the desired effect. diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index a953c7c38790..2f25aa3a291b 100644 --- a/Documentation/git-push.txt +++ b/Documentation/git-push.txt @@ -244,8 +244,8 @@ Imagine that you have to rebase what you have already published. You will have to bypass the "must fast-forward" rule in order to replace the history you originally published with the rebased history. If somebody else built on top of your original history while you are -rebasing, the tip of the branch at the remote may advance with her -commit, and blindly pushing with `--force` will lose her work. +rebasing, the tip of the branch at the remote may advance with their +commit, and blindly pushing with `--force` will lose their work. + This option allows you to say that you expect the history you are updating is what you rebased and want to replace. If the remote ref diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index f9e54b867417..4fe9be117c4a 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -2792,7 +2792,7 @@ A fast-forward looks something like this: In some cases it is possible that the new head will *not* actually be a descendant of the old head. For example, the developer may have -realized she made a serious mistake, and decided to backtrack, +realized they made a serious mistake, and decided to backtrack, resulting in a situation like: ................................................