From 2a7b6834d25b4937fcc1d5712c70714cb0e04b6b Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 30 Dec 2015 19:54:06 +0200 Subject: [PATCH] doc: fix grammar --- src/libstd/io/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 2ad45e80dd1..8ac46bf51f1 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1171,7 +1171,7 @@ pub enum SeekFrom { /// Set the offset to the size of this object plus the specified number of /// bytes. /// - /// It is possible to seek beyond the end of an object, but is an error to + /// It is possible to seek beyond the end of an object, but it's an error to /// seek before byte 0. #[stable(feature = "rust1", since = "1.0.0")] End(i64), @@ -1179,7 +1179,7 @@ pub enum SeekFrom { /// Set the offset to the current position plus the specified number of /// bytes. /// - /// It is possible to seek beyond the end of an object, but is an error to + /// It is possible to seek beyond the end of an object, but it's an error to /// seek before byte 0. #[stable(feature = "rust1", since = "1.0.0")] Current(i64),