Skip to content

Commit 9c53c92

Browse files
committed
Auto merge of #30645 - tshepang:grammar, r=steveklabnik
2 parents b9075d6 + 2a7b683 commit 9c53c92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/io/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1171,15 +1171,15 @@ pub enum SeekFrom {
11711171
/// Set the offset to the size of this object plus the specified number of
11721172
/// bytes.
11731173
///
1174-
/// It is possible to seek beyond the end of an object, but is an error to
1174+
/// It is possible to seek beyond the end of an object, but it's an error to
11751175
/// seek before byte 0.
11761176
#[stable(feature = "rust1", since = "1.0.0")]
11771177
End(i64),
11781178

11791179
/// Set the offset to the current position plus the specified number of
11801180
/// bytes.
11811181
///
1182-
/// It is possible to seek beyond the end of an object, but is an error to
1182+
/// It is possible to seek beyond the end of an object, but it's an error to
11831183
/// seek before byte 0.
11841184
#[stable(feature = "rust1", since = "1.0.0")]
11851185
Current(i64),

0 commit comments

Comments
 (0)