From b76ed5302549c752cdb46dd7728afefd73a319ea Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Tue, 20 Feb 2024 20:07:24 +0100 Subject: [PATCH] Fix typo in documentation for Parser.multiComment --- src/Parser.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Parser.elm b/src/Parser.elm index 2b04394..ee2c0db 100644 --- a/src/Parser.elm +++ b/src/Parser.elm @@ -1212,7 +1212,7 @@ JS whitespace, you could say: important! It can succeed without consuming any characters, so if it were the first option, it would always succeed and bypass the others! (Same is true of `chompWhile` in `js`.) This possibility of success without consumption is also -why wee need the `ifProgress` helper. It detects if there is no more whitespace +why we need the `ifProgress` helper. It detects if there is no more whitespace to consume. -} multiComment : String -> String -> Nestable -> Parser ()