diff options
| author | bors <bors@rust-lang.org> | 2015-12-31 22:44:02 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-12-31 22:44:02 +0000 |
| commit | 9c53c9234b8be004bde9c42618ae8c80ca686d0c (patch) | |
| tree | 564599881eaf7c02e44b81d4d53bb7d3137cc5b8 | |
| parent | b9075d6f533b2fceec125fa5afcedbb8e846ba72 (diff) | |
| parent | 2a7b6834d25b4937fcc1d5712c70714cb0e04b6b (diff) | |
| download | rust-9c53c9234b8be004bde9c42618ae8c80ca686d0c.tar.gz rust-9c53c9234b8be004bde9c42618ae8c80ca686d0c.zip | |
Auto merge of #30645 - tshepang:grammar, r=steveklabnik
| -rw-r--r-- | src/libstd/io/mod.rs | 4 |
1 files 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), |
