From e549324451d40b52f54f9077431674a050238d2c Mon Sep 17 00:00:00 2001 From: sergiolombrico Date: Tue, 26 Feb 2019 12:24:52 +0100 Subject: [PATCH] Improved wording --- src/Parser.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser.elm b/src/Parser.elm index 5a8b03a..d748913 100644 --- a/src/Parser.elm +++ b/src/Parser.elm @@ -285,7 +285,7 @@ That means we will want to define our parser in terms of itself: ] **Notice that `boolean` uses `boolean` in its definition!** In Elm, you can -only define a value in terms of itself it is behind a function call. So +only define a value in terms of itself if it is behind a function call. So `lazy` helps us define these self-referential parsers. (`andThen` can be used for this as well!) -}