Em dashes are cooler than hyphens.
This commit is contained in:
parent
d1b28b75d2
commit
9b5122976e
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@
|
|||
//!
|
||||
//! Shareable mutable containers exist to permit mutability in a controlled manner, even in the
|
||||
//! presence of aliasing. [`Cell<T>`], [`RefCell<T>`], and [`OnceCell<T>`] allow doing this in
|
||||
//! 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
|
||||
//! mutation among multiple threads, [`Mutex<T>`], [`RwLock<T>`], [`OnceLock<T>`] or [`atomic`]
|
||||
//! types are the correct data structures to do so).
|
||||
//!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue