diff options
| author | Liigo Zhuang <liigo@qq.com> | 2024-07-30 19:36:28 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-30 19:36:28 +0800 |
| commit | 918cdcc9c542eea0d7d3d4517dead7ae9a704e3e (patch) | |
| tree | 1520896b89ab12f8ea2d4406ebcd331649ff8fbf | |
| parent | e69c19ea0b8cf29ab8188a0eb5e899655464a1ff (diff) | |
| download | rust-918cdcc9c542eea0d7d3d4517dead7ae9a704e3e.tar.gz rust-918cdcc9c542eea0d7d3d4517dead7ae9a704e3e.zip | |
More detailed note to deprecate ONCE_INIT
| -rw-r--r-- | library/std/src/sync/once.rs | 2 |
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(); |
