From 66411b5ca07abcbaa1bd16b21b6e3d40563846f2 Mon Sep 17 00:00:00 2001 From: ZMI-RyanMann <58053023+ZMI-RyanMann@users.noreply.github.com> Date: Mon, 13 Jan 2020 09:17:47 -0500 Subject: [PATCH] website/docs: Updated documentation for range function pseudocode (#23823) --- website/docs/configuration/functions/range.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/configuration/functions/range.html.md b/website/docs/configuration/functions/range.html.md index daaab05bf..21bf4a3b4 100644 --- a/website/docs/configuration/functions/range.html.md +++ b/website/docs/configuration/functions/range.html.md @@ -36,7 +36,7 @@ The sequence-building algorithm follows the following pseudocode: ``` let num = start -while num <= limit: (or, for negative step, num >= limit) +while num < limit: (or, for negative step, num >= limit) append num to the sequence num = num + step return the sequence