Skip to content

Commit 9a9894a

Browse files
authored
Fix tracking issue for Once::is_completed
1 parent 1342913 commit 9a9894a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/sync/once.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ impl Once {
329329
/// assert!(handle.join().is_err());
330330
/// assert_eq!(INIT.is_completed(), false);
331331
/// ```
332-
#[unstable(feature = "once_is_completed", issue = "42")]
332+
#[unstable(feature = "once_is_completed", issue = "54890")]
333333
#[inline]
334334
pub fn is_completed(&self) -> bool {
335335
// An `Acquire` load is enough because that makes all the initialization

0 commit comments

Comments
 (0)