Skip to content

Commit

Permalink
Em dashes are cooler than hyphens.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se authored and tgross35 committed Mar 29, 2023
1 parent d1b28b7 commit 9b51229
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 waythey 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).
//!
Expand Down

0 comments on commit 9b51229

Please sign in to comment.