We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8869ee0 commit d3c73ddCopy full SHA for d3c73dd
src/libcore/cell.rs
@@ -11,7 +11,7 @@
11
//! mutate it.
12
//!
13
//! Shareable mutable containers exist to permit mutability in a controlled manner, even in the
14
-//! presence of aliasing. Both `Cell<T>` and `RefCell<T>` allows to do this in a single threaded
+//! presence of aliasing. Both `Cell<T>` and `RefCell<T>` allow doing this in a single-threaded
15
//! way. However, neither `Cell<T>` nor `RefCell<T>` are thread safe (they do not implement
16
//! `Sync`). If you need to do aliasing and mutation between multiple threads it is possible to
17
//! use [`Mutex`](../../std/sync/struct.Mutex.html),
0 commit comments