From e31b76c047c21e0ac0112e41f60d25b5c7c8810c Mon Sep 17 00:00:00 2001 From: Denis Andrejew Date: Fri, 27 Jan 2017 22:42:04 +0000 Subject: [PATCH] Fix typo in non-doc comment in copy.rs --- src/io/copy.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/copy.rs b/src/io/copy.rs index 3884a30b5..fa5677e04 100644 --- a/src/io/copy.rs +++ b/src/io/copy.rs @@ -72,7 +72,7 @@ impl Future for Copy self.amt += i as u64; } - // If we've written al the data and we've seen EOF, flush out the + // If we've written all the data and we've seen EOF, flush out the // data and finish the transfer. // done with the entire transfer. if self.pos == self.cap && self.read_done {