summaryrefslogtreecommitdiff
path: root/server/locale/en-US/libs
diff options
context:
space:
mode:
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 = [[