website/docs: Updated documentation for range function pseudocode (#23823)

pull/23845/head
ZMI-RyanMann 6 years ago committed by Kristin Laemmert
parent 9333b19bd7
commit 66411b5ca0

@ -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

Loading…
Cancel
Save