Skip to content

Commit d3c73dd

Browse files
committed
typo
1 parent 8869ee0 commit d3c73dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/libcore/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//! mutate it.
1212
//!
1313
//! 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
14+
//! presence of aliasing. Both `Cell<T>` and `RefCell<T>` allow doing this in a single-threaded
1515
//! way. However, neither `Cell<T>` nor `RefCell<T>` are thread safe (they do not implement
1616
//! `Sync`). If you need to do aliasing and mutation between multiple threads it is possible to
1717
//! use [`Mutex`](../../std/sync/struct.Mutex.html),

0 commit comments

Comments
 (0)