From 6e7410567c71f0d34d1e16d7c9cd9b555da371b7 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 11 Nov 2016 11:26:07 -0800 Subject: [PATCH] Typo --- src/io/frame.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,