about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTymoteusz Jankowski <tymoteusz.jankowski@gmail.com>2017-07-24 18:01:50 +0200
committerTymoteusz Jankowski <tymoteusz.jankowski@gmail.com>2017-07-24 18:01:50 +0200
commit3c535952bc7df52b8b9becae26511fb6ccdab7b1 (patch)
treec46c2322fbe23cd88117cc15e46457a6f8b4d4d3
parentbb65d3256841e1a7d267a3177a9147fd83857727 (diff)
review fixes
-rw-r--r--src/libcore/cell.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcore/cell.rs b/src/libcore/cell.rs
index acff77004ee..804d95f12c4 100644
--- a/src/libcore/cell.rs
+++ b/src/libcore/cell.rs
@@ -188,10 +188,10 @@ use ptr;
 
 /// A mutable memory location.
 /// 
-/// # Example
+/// # Examples
 /// 
-/// Here you can see how using `Cell<T>` allows to use muttable field inside
-/// immutable struct (which is also called "interior mutability").
+/// Here you can see how using `Cell<T>` allows to use mutable field inside
+/// immutable struct (which is also called 'interior mutability').
 /// 
 /// ```
 /// use std::cell::Cell;