Skip to content

Commit

Permalink
Improve docs for std::io::Seek
Browse files Browse the repository at this point in the history
Fixes #54562
  • Loading branch information
Marcus Griep committed Sep 28, 2018
1 parent 8876906 commit 5285d35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/io/mod.rs
Expand Up @@ -1204,8 +1204,8 @@ pub trait Write {
pub trait Seek {
/// Seek to an offset, in bytes, in a stream.
///
/// A seek beyond the end of a stream is allowed, but implementation
/// defined.
/// A seek beyond the end of a stream is allowed, but behavior is defined
/// by the implementation.
///
/// If the seek operation completed successfully,
/// this method returns the new position from the start of the stream.
Expand Down

0 comments on commit 5285d35

Please sign in to comment.