Skip to content

Commit eeba8e9

Browse files
sabiwarajosevalim
authored andcommitted
Fix Enum.slide/3 example in cheatsheet (#13054)
1 parent dd42dd8 commit eeba8e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/pages/cheatsheets/enum-cheat.cheatmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ iex> Enum.slide(fruits, 2, 4)
711711
iex> Enum.slide(fruits, 1..3, 0)
712712
["banana", "grape", "orange", "apple", "pear"]
713713
iex> Enum.slide(fruits, 1..3, 4)
714-
["banana", "pear", "grape", "orange", "apple"]
714+
["apple", "pear", "banana", "grape", "orange"]
715715
```
716716

717717
## Reversing

0 commit comments

Comments
 (0)