diff options
author | Simon Schricker <sschricker@suse.de> | 2019-07-30 08:00:21 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2019-07-30 08:44:05 +0200 |
commit | 2d1b928109fb390f6cb478d14460c7e117bcef06 (patch) | |
tree | cf731d741eb7953857016303a1b452f0b1db649f /docs | |
parent | Merge pull request #13219 from poettering/named-exit-codes-tweaks (diff) | |
download | systemd-2d1b928109fb390f6cb478d14460c7e117bcef06.tar.xz systemd-2d1b928109fb390f6cb478d14460c7e117bcef06.zip |
docs: fix typo
Diffstat (limited to 'docs')
-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 bf7ba3ea69..3b9b5e6c46 100644 --- a/docs/CODING_STYLE.md +++ b/docs/CODING_STYLE.md @@ -236,7 +236,7 @@ title: Coding Style p = foobar_unref(p); ``` - which will always work regardless if `p` is initialized or not,x and + which will always work regardless if `p` is initialized or not, and guarantees that `p` is `NULL` afterwards, all in just one line. ## Error Handling |