From 5567ec904e75ee5e0357c1e33f7e42b0acf73b53 Mon Sep 17 00:00:00 2001 From: Markus Jais Date: Tue, 9 May 2017 21:02:09 +0200 Subject: [PATCH] small typo fixed for io module --- src/io/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/mod.rs b/src/io/mod.rs index ccd55443f..f0c50e31e 100644 --- a/src/io/mod.rs +++ b/src/io/mod.rs @@ -64,7 +64,7 @@ pub use self::write_all::{write_all, WriteAll}; /// A trait for read/write I/O objects /// -/// This trait represents I/O object which are readable and writable. +/// This trait represents I/O objects which are readable and writable. /// Additionally, they're associated with the ability to test whether they're /// readable or writable. ///