Skip to content

Commit 9b51229

Browse files
m-ou-setgross35
authored andcommitted
Em dashes are cooler than hyphens.
1 parent d1b28b7 commit 9b51229

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//!
1313
//! Shareable mutable containers exist to permit mutability in a controlled manner, even in the
1414
//! 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
15+
//! a single-threaded waythey do not implement [`Sync`]. (If you need to do aliasing and
1616
//! mutation among multiple threads, [`Mutex<T>`], [`RwLock<T>`], [`OnceLock<T>`] or [`atomic`]
1717
//! types are the correct data structures to do so).
1818
//!

0 commit comments

Comments
 (0)