fix ParseMode docs typo
All checks were successful
buildbot/cargo fmt (1.72) Build done.
buildbot/cargo clippy (1.72) Build done.
buildbot/cargo test (1.65) Build done.
buildbot/cargo doc (1.72) Build done.
buildbot/cargo clippy (1.65) Build done.

This commit is contained in:
AF 2023-09-25 00:42:33 +00:00
parent 2c8701223e
commit 0639e41f28

View File

@ -132,7 +132,7 @@ pub trait Mode {
) -> Self::ExtensionResult<AB, E>; ) -> Self::ExtensionResult<AB, E>;
} }
/// Type that a [`Mode`] associated with it. /// Type that a [`Mode`] is associated with it.
pub trait ParseMode { pub trait ParseMode {
/// Associated [`Mode`]. /// Associated [`Mode`].
type Mode: ?Sized + Mode; type Mode: ?Sized + Mode;