commit 9cdf6dc880d249b4e41711f7a84e4e96ee158d7a
parent ab205c9f4bbf6defb9308a352251ceae22d68b67
Author: Quentin Rameau <quinq@fifth.space>
Date:   Wed, 23 May 2018 00:38:19 +0200
Fix coding style statement about single statements
No 7c5bcc9, that wasn't a typo.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/suckless.org/coding_style/index.md b/suckless.org/coding_style/index.md
@@ -43,7 +43,7 @@ Blocks
 * All variable declarations at top of block
 * `{` on same line preceded by single space (except functions)
 * `}` on own line unless continuing statement (`if else`, `do while`, ...)
-* Use block for single statement ifs
+* Use block for single statement iff
 	* Inner statement needs a block
 
 			for (;;) {