diff options
Diffstat (limited to 'lua_style.md')
-rw-r--r-- | lua_style.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua_style.md b/lua_style.md index aec6059dc..8ea7a81cf 100644 --- a/lua_style.md +++ b/lua_style.md @@ -174,7 +174,7 @@ This guide is forked from https://github.com/Olivine-Labs/lua-style-guide end ``` - - Never name a parameter `arg`, this will take precendence over the `arg` object that is given to every function scope in older versions of Lua. + - Never name a parameter `arg`, this will take precedence over the `arg` object that is given to every function scope in older versions of Lua. ```lua -- bad |