Skip to content

Commit 18a78fc

Browse files
authored
Rollup merge of rust-lang#54891 - rust-lang:SimonSapin-patch-1, r=nagisa
Fix tracking issue for Once::is_completed rust-lang#53027 was merged without a tracking issue. I just filed rust-lang#54890. CC @matklad
2 parents 6641c2d + 9a9894a commit 18a78fc

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)