about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-09-09 18:36:11 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-09-09 18:36:11 +0530
commit4fc09d3a15d18ee15897fa90ad93dc2cef37c919 (patch)
tree6abca7f3489f8bc7a7c1b2e3e7c50a1af58dc26e
parenteb2e00a0fd9ecd60c4e2ca9e3136c9e74d3fbd89 (diff)
parentb1e80079994e1f147c726e964278b28a972991e5 (diff)
downloadrust-4fc09d3a15d18ee15897fa90ad93dc2cef37c919.tar.gz
rust-4fc09d3a15d18ee15897fa90ad93dc2cef37c919.zip
Rollup merge of #28283 - rutsky:patch-3, r=steveklabnik
r? @steveklabnik
-rw-r--r--src/doc/trpl/mutability.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/mutability.md b/src/doc/trpl/mutability.md
index 9a9e38f7d0a..2c4316e651a 100644
--- a/src/doc/trpl/mutability.md
+++ b/src/doc/trpl/mutability.md
@@ -62,7 +62,7 @@ fn foo(mut x: i32) {
 # Interior vs. Exterior Mutability
 
 However, when we say something is ‘immutable’ in Rust, that doesn’t mean that
-it’s not able to be changed: We mean something has ‘exterior mutability’. Consider,
+it’s not able to be changed: we mean something has ‘exterior mutability’. Consider,
 for example, [`Arc<T>`][arc]:
 
 ```rust