From 0ebcc4623cbcd5e6d7992d2ca3842f1e3fdfc556 Mon Sep 17 00:00:00 2001 From: timofey Date: Sun, 30 Jul 2023 20:34:46 +0000 Subject: [PATCH] fix `Mode` docs typo --- src/mode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mode.rs b/src/mode.rs index 9b7bc76..9bb4d1d 100644 --- a/src/mode.rs +++ b/src/mode.rs @@ -40,7 +40,7 @@ pub type ModeResult = Result, E>; /// [`(A, I)`]: tuple /// [`()`]: unit pub trait Mode { - /// Successful parsing, may countain the parser itself + /// Successful parsing, may contain the parser itself /// (`I`, usually [`Stream`]). type ParseSuccess;