summaryrefslogtreecommitdiff
path: root/server/locale/en-US/libs
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2018-12-26 16:29:13 +0800
committer最萌小汐 <sumneko@hotmail.com>2018-12-26 16:29:13 +0800
commit161602cb6359d4b826545a990b592dbf12a22700 (patch)
tree292932433d463a22ffdedbce7df9c6c9603a97dc /server/locale/en-US/libs
parent906cae5e170b2146bcf1decc5f5dc188b0e63ae1 (diff)
downloadlua-language-server-161602cb6359d4b826545a990b592dbf12a22700.zip
支持中文了
Diffstat (limited to 'server/locale/en-US/libs')
-rw-r--r--server/locale/en-US/libs/lua53/table.lni6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/locale/en-US/libs/lua53/table.lni b/server/locale/en-US/libs/lua53/table.lni
index 234be1ae..5f5454d3 100644
--- a/server/locale/en-US/libs/lua53/table.lni
+++ b/server/locale/en-US/libs/lua53/table.lni
@@ -7,7 +7,7 @@ return list[i]..sep..list[i+1] ··· sep..list[j]
]]
[insert]
-description = 'Inserts element value at position `pos` in list.'
+description = 'Inserts element `value` at position `pos` in `list`.'
[move]
description = [[
@@ -19,13 +19,13 @@ return a2
]]
[pack]
-description = 'Returns a new table with all arguments stored into keys `1, 2, etc`. and with a field `n` with the total number of arguments.'
+description = 'Returns a new table with all arguments stored into keys `1`, `2`, etc. and with a field `"n"` with the total number of arguments.'
[remove]
description = 'Removes from `list` the element at position `pos`, returning the value of the removed element.'
[sort]
-description = 'Sorts list elements in a given order, **in-place**, from `list[1]` to `list[#list]`.'
+description = 'Sorts list elements in a given order, *in-place*, from `list[1]` to `list[#list]`.'
[unpack]
description = [[