Merge pull request #28784 from TAYTS/patch-2

Update range.html.md
This commit is contained in:
Laura Pacilio 2021-08-23 14:07:15 -04:00 committed by GitHub
commit 5863af448f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,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