about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLiigo Zhuang <liigo@qq.com>2024-07-30 19:36:28 +0800
committerGitHub <noreply@github.com>2024-07-30 19:36:28 +0800
commit918cdcc9c542eea0d7d3d4517dead7ae9a704e3e (patch)
tree1520896b89ab12f8ea2d4406ebcd331649ff8fbf
parente69c19ea0b8cf29ab8188a0eb5e899655464a1ff (diff)
downloadrust-918cdcc9c542eea0d7d3d4517dead7ae9a704e3e.tar.gz
rust-918cdcc9c542eea0d7d3d4517dead7ae9a704e3e.zip
More detailed note to deprecate ONCE_INIT
-rw-r--r--library/std/src/sync/once.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sync/once.rs b/library/std/src/sync/once.rs
index 9d969af8c6d..5e0694e8de2 100644
--- a/library/std/src/sync/once.rs
+++ b/library/std/src/sync/once.rs
@@ -70,7 +70,7 @@ pub(crate) enum ExclusiveState {
 #[stable(feature = "rust1", since = "1.0.0")]
 #[deprecated(
     since = "1.38.0",
-    note = "the `new` function is now preferred",
+    note = "the `Once::new()` function is now preferred",
     suggestion = "Once::new()"
 )]
 pub const ONCE_INIT: Once = Once::new();