diff options
| author | Martin Habovstiak <martin.habovstiak@gmail.com> | 2021-03-16 08:41:14 +0100 |
|---|---|---|
| committer | Martin Habovstiak <martin.habovstiak@gmail.com> | 2021-03-16 08:41:14 +0100 |
| commit | 4330268181c3de234457138f23bb821afd0c181e (patch) | |
| tree | 1abb595b9e450c8d2c310007b42a04b4e0052ce4 /library/std | |
| parent | 66f7f7d8a9e6e524468f5d84e73b438274c20dbb (diff) | |
| download | rust-4330268181c3de234457138f23bb821afd0c181e.tar.gz rust-4330268181c3de234457138f23bb821afd0c181e.zip | |
Filled tracking issue for path_try_exists
This adds the ID of the tracking issue to the feature.
Diffstat (limited to 'library/std')
| -rw-r--r-- | library/std/src/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ impl Path { /// ``` // 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) { |
