summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--C-STYLE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/C-STYLE.md b/C-STYLE.md
index 7119800..b60fdd9 100644
--- a/C-STYLE.md
+++ b/C-STYLE.md
@@ -130,7 +130,7 @@ but merely how to format it.
   * Do not use `!strcmp(a, b)`.
   * Use `if (!p) ...` to check whether `p` is a null pointer.
 
-* Don't use Yoda comparison (`0 == x`).
+* Don't use Yoda conditions (`0 == x`).
 
 * Use a plain `;` on a line of itself for the empty instruction.