summary refs log tree commit diff
path: root/C-STYLE.md
diff options
context:
space:
mode:
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.