diff --git a/src/combinators.ts b/src/combinators.ts index 3c09f15..0ff2967 100644 --- a/src/combinators.ts +++ b/src/combinators.ts @@ -54,7 +54,7 @@ export const butNot = ( /** * Map the output of `parser` to another `Parser` which is then applied to the - * remaining input, flattening the parse results. + * remaining input, returning the result of the second parser upon success. */ export const flatMap = ( parser: Parser,