From 5285d35b49e1e8976f2a8d9d2e6f5bd1324016d3 Mon Sep 17 00:00:00 2001 From: Marcus Griep Date: Fri, 28 Sep 2018 08:01:31 -0400 Subject: [PATCH] Improve docs for std::io::Seek Fixes #54562 --- 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 278ee7951b3d2..e263db24fc2c8 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -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.