We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0375ca5 commit 87013a2Copy full SHA for 87013a2
1 file changed
exercises/concept/maze-maker/.docs/introduction.md
@@ -59,7 +59,7 @@ generate 5 (Random.uniform Red [Green, Blue])
59
We can also tweak the probabilities using `Random.weighted`:
60
61
```elm
62
-generate 5 (Random.weighted (Red, 80) [(Green, 15), (Blue, 5)])
+generate 5 (Random.weighted (80, Red) [(15, Green), (5, Blue)])
63
--> [Red, Red, Green, Red, Red]
64
```
65
0 commit comments