about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJane Losare-Lusby <jlusby42@gmail.com>2022-07-15 13:17:44 -0700
committerGitHub <noreply@github.com>2022-07-15 13:17:44 -0700
commit8e8a3be22f1082da965f6a696be93fbbd7b5d4ba (patch)
tree3febd7c13b34d3364bca9cdb832782460abac8cb
parentd8aba1002a222d2a826c6c35fbb03dd4c1594a05 (diff)
downloadrust-8e8a3be22f1082da965f6a696be93fbbd7b5d4ba.tar.gz
rust-8e8a3be22f1082da965f6a696be93fbbd7b5d4ba.zip
Apply suggestions from code review
-rw-r--r--library/std/src/io/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index 811688175e0..ff7fdcae16f 100644
--- a/library/std/src/io/error.rs
+++ b/library/std/src/io/error.rs
@@ -836,7 +836,7 @@ impl Error {
     ///     }
     /// }
     /// ```
-    #[unstable(feature = "io_error_downcast", issue = "none")]
+    #[unstable(feature = "io_error_downcast", issue = "99262")]
     pub fn downcast<E>(self) -> result::Result<Box<E>, Self>
     where
         E: error::Error + Send + Sync + 'static,