summary refs log tree commit diff
path: root/src/libstd/io/error.rs
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-12-09 01:10:28 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-12-09 01:30:08 +0200
commit33d43c1e3468c8245f5f096d06760dac318399f7 (patch)
tree7c319235d884e37cf7e7f1261983c2d388d66367 /src/libstd/io/error.rs
parent4dbdfb493357427a0f94ce09badef581f5d62bbd (diff)
downloadrust-33d43c1e3468c8245f5f096d06760dac318399f7.tar.gz
rust-33d43c1e3468c8245f5f096d06760dac318399f7.zip
doc: these are just renames, so avoid duplication
Diffstat (limited to 'src/libstd/io/error.rs')
-rw-r--r--src/libstd/io/error.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/libstd/io/error.rs b/src/libstd/io/error.rs
index 4af9596d6d0..1ff8f572a7f 100644
--- a/src/libstd/io/error.rs
+++ b/src/libstd/io/error.rs
@@ -150,12 +150,7 @@ pub enum ErrorKind {
     #[stable(feature = "rust1", since = "1.0.0")]
     Other,
 
-    /// An error returned when an operation could not be completed because an
-    /// "end of file" was reached prematurely.
-    ///
-    /// This typically means that an operation could only succeed if it read a
-    /// particular number of bytes but only a smaller number of bytes could be
-    /// read.
+    #[allow(missing_docs)]
     #[unstable(feature = "read_exact_old", reason = "recently added",
                issue = "0")]
     #[rustc_deprecated(since = "1.6.0", reason = "renamed to UnexpectedEof")]