diff --git a/library/std/src/path.rs b/library/std/src/path.rs index 4dd37f76efc..e5e4ccac921 100644 --- a/library/std/src/path.rs +++ b/library/std/src/path.rs @@ -2488,7 +2488,7 @@ pub fn exists(&self) -> bool { /// ``` // FIXME: stabilization should modify documentation of `exists()` to recommend this method // instead. - #[unstable(feature = "path_try_exists", issue = "none")] + #[unstable(feature = "path_try_exists", issue = "83186")] #[inline] pub fn try_exists(&self) -> io::Result { match fs::metadata(self) {