From 0514e54b97c75c7cabd5a3b04f2a6b19990a9d66 Mon Sep 17 00:00:00 2001 From: Aaron Turon Date: Tue, 4 Nov 2014 12:43:35 -0800 Subject: [PATCH] std::error: fix stray doc comment --- src/libstd/error.rs | 3 --- 1 file changed, 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