diff --git a/library/core/src/cell.rs b/library/core/src/cell.rs index d378b0b3b977..63bce5d0ccd4 100644 --- a/library/core/src/cell.rs +++ b/library/core/src/cell.rs @@ -12,7 +12,7 @@ //! //! Shareable mutable containers exist to permit mutability in a controlled manner, even in the //! presence of aliasing. [`Cell`], [`RefCell`], and [`OnceCell`] 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`], [`RwLock`], [`OnceLock`] or [`atomic`] //! types are the correct data structures to do so). //!