diff --git a/src/io/frame.rs b/src/io/frame.rs index a5ddbd405..f4e5994ab 100644 --- a/src/io/frame.rs +++ b/src/io/frame.rs @@ -396,7 +396,7 @@ impl Sink for FramedWrite { /// A unified `Stream` and `Sink` interface to an underlying `Io` object, using /// the `Encode` and `Decode` traits to encode and decode frames. /// -/// You can acquire a `Framd` instance by using the `Io::framed` adapter. +/// You can acquire a `Framed` instance by using the `Io::framed` adapter. pub struct Framed { upstream: T, read_state: ReadState,