From 67e5db503673f34caa5ddc3364209eeebb73fedc Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Wed, 27 May 2015 15:14:26 -0400 Subject: [PATCH] Remove 'yet to be added' from API docs In general, this kind of text gets outdated, as it already sorta kinda is. Fixes #25728 --- src/libstd/io/error.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/libstd/io/error.rs b/src/libstd/io/error.rs index 97c5a29d308a1..890127a43635b 100644 --- a/src/libstd/io/error.rs +++ b/src/libstd/io/error.rs @@ -129,9 +129,7 @@ impl Error { /// /// This function is used to generically create I/O errors which do not /// originate from the OS itself. The `error` argument is an arbitrary - /// payload which will be contained in this `Error`. Accessors as well as - /// downcasting will soon be added to this type as well to access the custom - /// information. + /// payload which will be contained in this `Error`. /// /// # Examples ///