Skip to content

Commit

Permalink
Typo in range.janet
Browse files Browse the repository at this point in the history
Just a small typo I found the comment of range.janet.
  • Loading branch information
lescx authored May 29, 2024
1 parent e4a7d55 commit 8774d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/range.janet
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(range 10) # -> @[0 1 2 3 4 6 7 8 9]
(range 10) # -> @[0 1 2 3 4 5 6 7 8 9]
(range 5 10) # -> @[5 6 7 8 9]
(range 5 10 2) # -> @[5 7 9]
(range 5 11 2) # -> @[5 7 9]
Expand Down

0 comments on commit 8774d90

Please sign in to comment.