summary refs log tree commit diff
path: root/C-STYLE.md
diff options
context:
space:
mode:
authorChristian Neukirchen <chneukirchen@gmail.com>2016-09-07 21:07:35 +0200
committerChristian Neukirchen <chneukirchen@gmail.com>2016-09-07 21:07:35 +0200
commitad2fc73ad3f817285339743efac922c9eb1479cd (patch)
tree97764e244310cbc93408dd2c451cdb8b0843d92b /C-STYLE.md
parente976d321611cf3e2d3d5794d502373a5de03be25 (diff)
downloadstyleguide-ad2fc73ad3f817285339743efac922c9eb1479cd.tar.gz
styleguide-ad2fc73ad3f817285339743efac922c9eb1479cd.tar.xz
styleguide-ad2fc73ad3f817285339743efac922c9eb1479cd.zip
C-STYLE: suffix is the word
Diffstat (limited to 'C-STYLE.md')
-rw-r--r--C-STYLE.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/C-STYLE.md b/C-STYLE.md
index 05dd732..b3e58dc 100644
--- a/C-STYLE.md
+++ b/C-STYLE.md
@@ -150,7 +150,7 @@ but merely how to format it.
 * The length of an identifier determines its scope.
 
 * Respect POSIX namespaces: http://port70.net/~nsz/c/posix/reserved.txt
-  Do not use `_t` postfix for types.
+  Do not use `_t` suffix for types.
 
 * Use `snake_case` for functions, variables, and types.
 
@@ -158,7 +158,7 @@ but merely how to format it.
 
 * Use `Xflag` for the value of the command line flag `-X`.
 
-* Use a postfix `o` to mark output parameters.
+* Use a suffix `o` to mark output parameters.
 
 * Use a consistent prefix for all global names in a library.