diff --git a/website/docs/configuration/functions/range.html.md b/website/docs/configuration/functions/range.html.md index daaab05bf8..21bf4a3b4d 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