We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90e6eeb commit ed7b244Copy full SHA for ed7b244
library/std/src/sync/once.rs
@@ -110,7 +110,7 @@ use crate::thread::{self, Thread};
110
/// ```
111
#[stable(feature = "rust1", since = "1.0.0")]
112
pub struct Once {
113
- // `state_and_queue` is actually an a pointer to a `Waiter` with extra state
+ // `state_and_queue` is actually a pointer to a `Waiter` with extra state
114
// bits, so we add the `PhantomData` appropriately.
115
state_and_queue: AtomicUsize,
116
_marker: marker::PhantomData<*const Waiter>,
0 commit comments