From 4b54dd7fd9832beaf2b182d1a9be46b2e9a83e7e Mon Sep 17 00:00:00 2001 From: Andrii Dmytrenko Date: Thu, 11 Aug 2016 11:29:16 +0100 Subject: [PATCH] Use an existing constant name as an example. --- src/libcore/sync/atomic.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/sync/atomic.rs b/src/libcore/sync/atomic.rs index 2a7a0b6232936..5701a89d8bc42 100644 --- a/src/libcore/sync/atomic.rs +++ b/src/libcore/sync/atomic.rs @@ -32,7 +32,7 @@ //! atomically-reference-counted shared pointer). //! //! Most atomic types may be stored in static variables, initialized using -//! the provided static initializers like `INIT_ATOMIC_BOOL`. Atomic statics +//! the provided static initializers like `ATOMIC_BOOL_INIT`. Atomic statics //! are often used for lazy global initialization. //! //!