From b1e80079994e1f147c726e964278b28a972991e5 Mon Sep 17 00:00:00 2001 From: Vladimir Rutsky Date: Mon, 7 Sep 2015 11:01:01 +0300 Subject: [PATCH] fix capitalization inside sentense --- src/doc/trpl/mutability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/mutability.md b/src/doc/trpl/mutability.md index ef569a09e21..5f71bc806bf 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`][arc]: ```rust