doc/coding_style.md
changeset 9904 f2104b36f673
parent 9903 8c831c76fc94
child 9943 3a7f822f6edd
--- a/doc/coding_style.md	Sat Mar 23 03:56:55 2019 +0100
+++ b/doc/coding_style.md	Sat Mar 23 04:00:55 2019 +0100
@@ -451,17 +451,17 @@
 end
 ```
 
-* Separate statements onto multiple lines. Do not use semicolons as statement terminators.
+* Separate statements onto multiple lines. Use semicolons as statement terminators.
 
 ```lua
 -- bad
-local whatever = "sure";
-a = 1; b = 2
+local whatever = "sure"
+a = 1 b = 2
 
 -- good
-local whatever = "sure"
-a = 1
-b = 2
+local whatever = "sure";
+a = 1;
+b = 2;
 ```
 
 ## Spacing