elm / random

Generate random values in Elm
https://package.elm-lang.org/packages/elm/random/latest/
BSD 3-Clause "New" or "Revised" License
46 stars 23 forks source link

Fix example code for `lazy` #3

Closed rgrempel closed 6 years ago

rgrempel commented 6 years ago

The example code for lazy doesn't compile, because it gives a List as the only argument to uniform (rather than a non-empty list -- that is, an item and a list).

So, this PR just fixes the example code.

evancz commented 6 years ago

Thank you!