From 4c336c9d2a8862021f3cac71ed31939712460195 Mon Sep 17 00:00:00 2001 From: Josh White Date: Fri, 7 Aug 2020 12:35:38 -0400 Subject: [PATCH] Remove the minor grammatical error after examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 94834ff..4812ff1 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ usuallyTrue = Random.weighted (80, True) [ (20, False) ] ``` -In each of these defines _how_ to generate random values. The most interesting case is `usuallyTrue` which generates `True` 80% of the time and `False` 20% of the time! +Each of these defines _how_ to generate random values. The most interesting case is `usuallyTrue` which generates `True` 80% of the time and `False` 20% of the time! Now look at this [working example](https://guide.elm-lang.org/effects/random.html) to see a `Generator` used in an application.