From 013641ce29533767c2fadccfb46eadab1f0272d8 Mon Sep 17 00:00:00 2001 From: Sebas-h Date: Sat, 22 Feb 2020 15:54:56 +0000 Subject: [PATCH] Update Parser.elm Small typo in `lazy` docstring --- src/Parser.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser.elm b/src/Parser.elm index 2b04394..e81b51a 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!) -}