]> git.lizzy.rs Git - rust.git/commitdiff
Filled tracking issue for path_try_exists
authorMartin Habovstiak <martin.habovstiak@gmail.com>
Tue, 16 Mar 2021 07:41:14 +0000 (08:41 +0100)
committerMartin Habovstiak <martin.habovstiak@gmail.com>
Tue, 16 Mar 2021 07:41:14 +0000 (08:41 +0100)
This adds the ID of the tracking issue to the feature.

library/std/src/path.rs

index 4dd37f76efcb14799392bd761bf0a8031e00b0bb..e5e4ccac921b260161477382f769f15a8806bb18 100644 (file)
@@ -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<bool> {
         match fs::metadata(self) {