From c79cc51fa47d00b352f122df8056b682182f0be6 Mon Sep 17 00:00:00 2001 From: Zij-IT Date: Tue, 22 Oct 2024 18:00:55 +0200 Subject: [PATCH] then_docs: fix what was likely a copy-paste error --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9132b385..8f4c5e25 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1033,7 +1033,7 @@ pub trait Parser<'a, I: Input<'a>, O, E: ParserExtra<'a, I> = extra::Default>: } /// Parse one thing and then another thing, creating the second parser from the result of - /// the first. If you don't need the context in the output, use [`Parser::then_with_ctx`]. + /// the first. If you do need the context in the output, use [`Parser::then_with_ctx`]. /// /// The output of this parser is `U`, the result of the second parser ///