We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 792c356 commit aedf3eeCopy full SHA for aedf3ee
1 file changed
CONTRIBUTING.md
@@ -123,25 +123,29 @@ the recommended style are welcome!**
123
### Modules
124
125
When writing a module (a Lua file), separate logical blocks of code with
126
-**two** blank lines:
+**three** blank lines:
127
128
```lua
129
local foo = require "some_module.foo"
130
131
132
+
133
local _M = {}
134
135
136
137
function _M.bar()
138
-- do thing...
139
end
140
141
142
143
function _M.baz()
144
145
146
147
148
149
return _M
150
```
151
0 commit comments