diff options
author | kevinhwang91 <kevin.hwang@live.com> | 2022-04-28 16:55:58 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-28 22:31:06 +0800 |
commit | e7b0b8a3c66e096d361aa49be1b953aa7eb0506d (patch) | |
tree | 33238cc7637f9d29c7d40922969b1e9ed41564ca /locale | |
parent | 0441ef075d03e2fcf6fd50588e37d625421431c7 (diff) | |
download | lua-language-server-e7b0b8a3c66e096d361aa49be1b953aa7eb0506d.zip |
fix(template): remove trailing-space
Diffstat (limited to 'locale')
-rw-r--r-- | locale/en-us/meta.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/en-us/meta.lua b/locale/en-us/meta.lua index 09612d76..8e4a2fb1 100644 --- a/locale/en-us/meta.lua +++ b/locale/en-us/meta.lua @@ -135,7 +135,7 @@ select = 'If `index` is a number, returns all arguments after argument number `index`; a negative number indexes from the end (`-1` is the last argument). Otherwise, `index` must be the string `"#"`, and `select` returns the total number of extra arguments it received.' setfenv = -'Sets the environment to be used by the given function. ' +'Sets the environment to be used by the given function.' setmetatable = [[ @@ -653,7 +653,7 @@ string.format = 'Returns a formatted version of its variable number of arguments following the description given in its first argument.' string.gmatch = [[ -Returns an iterator function that, each time it is called, returns the next captures from `pattern` (see §6.4.1) over the string s. +Returns an iterator function that, each time it is called, returns the next captures from `pattern` (see §6.4.1) over the string s. As an example, the following loop will iterate over all the words from string s, printing one per line: ```lua |