diff --git a/resources/function_help/$scale-en_US b/resources/function_help/$scale-en_US new file mode 100644 index 00000000000..412087086ac --- /dev/null +++ b/resources/function_help/$scale-en_US @@ -0,0 +1,12 @@ +
$scale
$scale → 10000
format_number(number,places)
number
- is number. The number to be formatted.
+places
- is int. The number of decimal places to truncate the string
+to.
+
+format_number(10000000.332,2) → 10,000,000.33
+
diff --git a/resources/function_help/round-en_US b/resources/function_help/round-en_US
new file mode 100644
index 00000000000..0f101b23cc4
--- /dev/null
+++ b/resources/function_help/round-en_US
@@ -0,0 +1,20 @@
+round(decimal,places)
round(decimal)
decimal
- is decimal. The decimal number to be rounded.
+places
- is int. The number of places to round decimal too. Can be negative.
+
+round(1234.567, 2 ) → 1234.57
round(decimal)
to round to the nearest integerround(1234.567) → 1235