From f70faa91ebd582c2799e1350bc292aad6ae1740e Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Tue, 18 Aug 2015 10:01:41 -0400 Subject: [PATCH] Remove repetition in Seek::seek() doc --- src/libstd/io/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 5ad5d0fa4d5..ac70fdae253 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1060,9 +1060,6 @@ pub trait Seek { /// A seek beyond the end of a stream is allowed, but implementation /// defined. /// - /// The behavior when seeking past the end of the stream is implementation - /// defined. - /// /// If the seek operation completed successfully, /// this method returns the new position from the start of the stream. /// That position can be used later with `SeekFrom::Start`.