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/math.lni2
-rw-r--r--server/locale/en-US/libs/lua53/string.lni14
2 files changed, 8 insertions, 8 deletions
diff --git a/server/locale/en-US/libs/lua53/math.lni b/server/locale/en-US/libs/lua53/math.lni
index b704b143..fccdd4cf 100644
--- a/server/locale/en-US/libs/lua53/math.lni
+++ b/server/locale/en-US/libs/lua53/math.lni
@@ -50,7 +50,7 @@ description = 'An integer with the minimum value for an integer.'
description = 'Returns the integral part of `x` and the fractional part of `x`.'
[pi]
-description = 'The value of `π`.'
+description = 'The value of *π*.'
[rad]
description = 'Converts the angle `x` from degrees to radians.'
diff --git a/server/locale/en-US/libs/lua53/string.lni b/server/locale/en-US/libs/lua53/string.lni
index a5d4bcc5..633afdf8 100644
--- a/server/locale/en-US/libs/lua53/string.lni
+++ b/server/locale/en-US/libs/lua53/string.lni
@@ -5,10 +5,10 @@ description = 'Returns the internal numeric codes of the characters `s[i], s[i+1
description = 'Returns a string with length equal to the number of arguments, in which each character has the internal numeric code equal to its corresponding argument.'
[dump]
-description = 'Returns a string containing a binary representation (a binary chunk) of the given function.'
+description = 'Returns a string containing a binary representation (a *binary chunk*) of the given function.'
[find]
-description = 'Looks for the first match of `pattern` in the string.'
+description = 'Looks for the first match of [`pattern`](https://www.lua.org/manual/5.3/manual.html#6.4.1) in the string.'
[format]
description = 'Returns a formatted version of its variable number of arguments following the description given in its first argument.'
@@ -25,7 +25,7 @@ end
]]
[gsub]
-description = 'Returns a copy of s in which all (or the first `n`, if given) occurrences of the `pattern` have been replaced by a replacement string specified by `repl`.'
+description = 'Returns a copy of s in which all (or the first `n`, if given) occurrences of the [`pattern`](https://www.lua.org/manual/5.3/manual.html#6.4.1) have been replaced by a replacement string specified by `repl`.'
[len]
description = 'Returns its length.'
@@ -34,10 +34,10 @@ description = 'Returns its length.'
description = 'Returns a copy of this string with all uppercase letters changed to lowercase.'
[match]
-description = 'Looks for the first match of `pattern` in the string.'
+description = 'Looks for the first match of [`pattern`](https://www.lua.org/manual/5.3/manual.html#6.4.1) in the string.'
[pack]
-description = 'Returns a binary string containing the values `v1, v2, etc.` packed (that is, serialized in binary form) according to the format string `fmt`.'
+description = 'Returns a binary string containing the values `v1`, `v2`, etc. packed (that is, serialized in binary form) according to the format string [`fmt`](https://www.lua.org/manual/5.3/manual.html#6.4.2).'
[packsize]
description = 'Returns the size of a string resulting from `string.pack` with the given format.'
@@ -46,13 +46,13 @@ description = 'Returns the size of a string resulting from `string.pack` with th
description = 'Returns a string that is the concatenation of `n` copies of the string `s` separated by the string `sep`.'
[reverse]
-description = 'Returns a string that is the string s reversed.'
+description = 'Returns a string that is the string `s` reversed.'
[sub]
description = 'Returns the substring of the string that starts at `i` and continues until `j`.'
[unpack]
-description = 'Returns the values packed in string according to the format string `fmt`.'
+description = 'Returns the values packed in string according to the format string [`fmt`](https://www.lua.org/manual/5.3/manual.html#6.4.2).'
[upper]
description = 'Returns a copy of this string with all lowercase letters changed to uppercase.'