Skip to content

Commit

Permalink
Fix tracking issue for Once::is_completed
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed Oct 7, 2018
1 parent 1342913 commit 9a9894a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/sync/once.rs
Expand Up @@ -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
Expand Down

0 comments on commit 9a9894a

Please sign in to comment.