diff options
author | Emily Gonyer <emilyyrose@gmail.com> | 2021-11-12 16:09:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-12 16:09:56 +0100 |
commit | be7148ebed5d73c4a76bc6089ebe2e82d8fa33e0 (patch) | |
tree | 486a69329b28cd736e028c1a4f00099d8749a2ec /docs/CODING_STYLE.md | |
parent | pid1: add a manager_trigger_run_queue() helper (diff) | |
download | systemd-be7148ebed5d73c4a76bc6089ebe2e82d8fa33e0.tar.xz systemd-be7148ebed5d73c4a76bc6089ebe2e82d8fa33e0.zip |
Change gendered terms to be gender-neutral (#21325)
Some typos are also fixed.
Diffstat (limited to 'docs/CODING_STYLE.md')
-rw-r--r-- | docs/CODING_STYLE.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CODING_STYLE.md b/docs/CODING_STYLE.md index 4792f270c5..34e04ed735 100644 --- a/docs/CODING_STYLE.md +++ b/docs/CODING_STYLE.md @@ -297,7 +297,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later with a more brutal `assert()`. We are more forgiving to public users than for ourselves! Note that `assert()` and `assert_return()` really only should be used for detecting programming errors, not for runtime errors. `assert()` and - `assert_return()` by usage of `_likely_()` inform the compiler that he should + `assert_return()` by usage of `_likely_()` inform the compiler that it should not expect these checks to fail, and they inform fellow programmers about the expected validity and range of parameters. |