about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-11-06 13:31:03 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-11-06 13:31:03 -0800
commit08ddfc10e4170ac5f4522a71c0d1aea8cf799f29 (patch)
tree59a80864d130763650e29c107c245bba8d089b3b /src/libstd
parent3f3fc0cd334f4c7344eb873811ffde43d7b55c79 (diff)
parent0514e54b97c75c7cabd5a3b04f2a6b19990a9d66 (diff)
downloadrust-08ddfc10e4170ac5f4522a71c0d1aea8cf799f29.tar.gz
rust-08ddfc10e4170ac5f4522a71c0d1aea8cf799f29.zip
rollup merge of #18628 : aturon/fixup-error-comment
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/error.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstd/error.rs b/src/libstd/error.rs
index 6bb9f4b473b..b048ab13968 100644
--- a/src/libstd/error.rs
+++ b/src/libstd/error.rs
@@ -33,9 +33,6 @@
 //! particular implementation, but also reveal some of its implementation for
 //! debugging via `cause` chains.
 //!
-//! The trait inherits from `Any` to allow *downcasting*: converting from a
-//! trait object to a specific concrete type when applicable.
-//!
 //! # The `FromError` trait
 //!
 //! `FromError` is a simple trait that expresses conversions between different