diff options
author | Julian Montague <roast@roastchicken.io> | 2020-03-13 07:57:11 +0100 |
---|---|---|
committer | Julian Montague <julian@fard.no> | 2020-03-13 08:01:57 +0100 |
commit | 62252055c2dffdb1008fab11e58711708dd6400e (patch) | |
tree | e22ac098072b206bcfb3762d276567b2fdd060d2 | |
parent | 9e975a8dcf821ea385742cfe9088d72388d08e43 (diff) |
Fix typo by indicating a range with '...'
-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: |