diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2020-04-11 16:35:42 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-11 16:35:42 +0530 |
commit | 2f81283970ca1f613c81a133908564b4f3e2a413 (patch) | |
tree | ed1fec7dd8666cf3e19834d913ba5cbf0cf43aeb | |
parent | 37ac3b8b35bdf78338f698379a8e36ba2a15dcc6 (diff) | |
parent | 62252055c2dffdb1008fab11e58711708dd6400e (diff) |
Merge pull request #3883 from roastchicken/master
[lua/en] Fix typo by indicating a range with '...' instead of '..'
-rw-r--r-- | lua.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua.html.markdown b/lua.html.markdown index 0a7c4f00..53e396be 100644 --- a/lua.html.markdown +++ b/lua.html.markdown @@ -116,7 +116,7 @@ function bar(a, b, c) end x, y = bar('zaphod') --> prints "zaphod nil nil" --- Now x = 4, y = 8, values 15..42 are discarded. +-- Now x = 4, y = 8, values 15...42 are discarded. -- Functions are first-class, may be local/global. -- These are the same: |