about summary refs log tree commit diff
path: root/src/libstd/sync
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-10-07 12:00:41 +0200
committerGitHub <noreply@github.com>2018-10-07 12:00:41 +0200
commit9a9894a8f1f0dbf1acb35947081bbd299fc44968 (patch)
tree8c009cc6c03d71de100d236b78a4fb6ed78ff4af /src/libstd/sync
parent13429136b88d39b71e18c2742c9f002a9c885429 (diff)
downloadrust-9a9894a8f1f0dbf1acb35947081bbd299fc44968.tar.gz
rust-9a9894a8f1f0dbf1acb35947081bbd299fc44968.zip
Fix tracking issue for Once::is_completed
Diffstat (limited to 'src/libstd/sync')
-rw-r--r--src/libstd/sync/once.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sync/once.rs b/src/libstd/sync/once.rs
index 17cb614ba11..98845e457b2 100644
--- a/src/libstd/sync/once.rs
+++ b/src/libstd/sync/once.rs
@@ -329,7 +329,7 @@ impl Once {
     /// assert!(handle.join().is_err());
     /// assert_eq!(INIT.is_completed(), false);
     /// ```
-    #[unstable(feature = "once_is_completed", issue = "42")]
+    #[unstable(feature = "once_is_completed", issue = "54890")]
     #[inline]
     pub fn is_completed(&self) -> bool {
         // An `Acquire` load is enough because that makes all the initialization