summaryrefslogtreecommitdiff
path: root/docs/CODING_STYLE.md
diff options
context:
space:
mode:
authorEmily Gonyer <emilyyrose@gmail.com>2021-11-12 10:09:56 -0500
committerGitHub <noreply@github.com>2021-11-12 16:09:56 +0100
commitbe7148ebed5d73c4a76bc6089ebe2e82d8fa33e0 (patch)
tree486a69329b28cd736e028c1a4f00099d8749a2ec /docs/CODING_STYLE.md
parentb0c4b2824693fe6a27ea9439ec7a6328a0e23704 (diff)
downloadsystemd-be7148ebed5d73c4a76bc6089ebe2e82d8fa33e0.tar.gz
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.md2
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.