summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-09-02 09:56:56 +0200
committerRichard Braun <rbraun@sceen.net>2017-09-02 15:52:34 +0200
commit1469ce26e2e58082fd4bbb343cad60f2d696a641 (patch)
treedeb0d8a41d910ec551298a607d7de3eab174d424
parent032b667c7b0855a9de72fe5ba62291e4493f58ce (diff)
doc/style(9): fix boolean coercion section
-rw-r--r--doc/style.9.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/style.9.txt b/doc/style.9.txt
index 846a3e46..c4a57780 100644
--- a/doc/style.9.txt
+++ b/doc/style.9.txt
@@ -625,9 +625,8 @@ Boolean Coercion
~~~~~~~~~~~~~~~~
Boolean coercion should only be used when the resulting text is semantically
-valid, i.e. it can be understood that the expression is either true, or false.
-
-checking error codes and pointers. For example :
+valid, i.e. it can be understood that the expression is either true or false.
+For example :
[source,c]
--------------------------------------------------------------------------------