Skip to content

Commit 87013a2

Browse files
authored
Update maze maker introduction (#734)
Another pull request updated about.md, but we forgot about this file
1 parent 0375ca5 commit 87013a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exercises/concept/maze-maker/.docs/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ generate 5 (Random.uniform Red [Green, Blue])
5959
We can also tweak the probabilities using `Random.weighted`:
6060

6161
```elm
62-
generate 5 (Random.weighted (Red, 80) [(Green, 15), (Blue, 5)])
62+
generate 5 (Random.weighted (80, Red) [(15, Green), (5, Blue)])
6363
--> [Red, Red, Green, Red, Red]
6464
```
6565

0 commit comments

Comments
 (0)