From 0ec598a97d08c418168d0b97a2427749527bfcc7 Mon Sep 17 00:00:00 2001 From: DarkWiiPlayer Date: Thu, 18 Jul 2019 13:02:07 +0200 Subject: [PATCH] Add missing "Example" in lua style guide --- lua-style.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua-style.md b/lua-style.md index c73936d..95907dc 100644 --- a/lua-style.md +++ b/lua-style.md @@ -35,6 +35,8 @@ Example: 1. Use `--[[]]` comments to comment out items from a list 2. Include separators in the comment (or not) according to the rules in the table / sequence section + +Example: print("Hello", "World"--[[, "foo", "bar"]]) local elements = { foo, --[[bar,]] }