about summary refs log tree commit diff
path: root/src/libstd/io
diff options
context:
space:
mode:
authorRemi Rampin <remirampin@gmail.com>2015-08-18 10:01:41 -0400
committerRemi Rampin <remirampin@gmail.com>2015-08-18 10:01:41 -0400
commitf70faa91ebd582c2799e1350bc292aad6ae1740e (patch)
treeff081cdd0e4361bd037d52c133cb01be3b058d39 /src/libstd/io
parent58e602b03ff8dc6caf3f64178430d1869d230fec (diff)
downloadrust-f70faa91ebd582c2799e1350bc292aad6ae1740e.tar.gz
rust-f70faa91ebd582c2799e1350bc292aad6ae1740e.zip
Remove repetition in Seek::seek() doc
Diffstat (limited to 'src/libstd/io')
-rw-r--r--src/libstd/io/mod.rs3
1 files changed, 0 insertions, 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`.