We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1b28b7 commit 9b51229Copy full SHA for 9b51229
library/core/src/cell.rs
@@ -12,7 +12,7 @@
12
//!
13
//! Shareable mutable containers exist to permit mutability in a controlled manner, even in the
14
//! presence of aliasing. [`Cell<T>`], [`RefCell<T>`], and [`OnceCell<T>`] allow doing this in
15
-//! a single-threaded way - they do not implement [`Sync`]. (If you need to do aliasing and
+//! a single-threaded way—they do not implement [`Sync`]. (If you need to do aliasing and
16
//! mutation among multiple threads, [`Mutex<T>`], [`RwLock<T>`], [`OnceLock<T>`] or [`atomic`]
17
//! types are the correct data structures to do so).
18
0 commit comments