Skip to content

Commit 184361a

Browse files
authored
Merge pull request #665 from tkatchenko/patch-1
Fix List.range typo
2 parents 9404526 + 208a0a0 commit 184361a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/docs/syntax.elm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ square =
195195
\\n -> n^2
196196
197197
squares =
198-
List.map (\\n -> n^2) (List.rang 1 100)
198+
List.map (\\n -> n^2) (List.range 1 100)
199199
```
200200
201201
### Infix Operators

0 commit comments

Comments
 (0)