From e50028aeadc29696fb18acd6d9e55fb690997929 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 13 May 2022 10:45:24 -0500 Subject: [PATCH] Update math.md Fixed improper syntax for randInt which does not display on GH pages --- docs/math.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/math.md b/docs/math.md index 5f81c894..b08d0a2f 100644 --- a/docs/math.md +++ b/docs/math.md @@ -70,7 +70,9 @@ Returns a float value with the remainder rounded to the given number to digits a ## randInt Returns a random integer value from min (inclusive) to max (exclusive). + ``` -{{ randInt 12 30 }} +randInt 12 30 ``` + The above will produce a random number in the range [12,30].