diff --git a/src/doc/book/mutability.md b/src/doc/book/mutability.md index e462715114624..a0a49d55e1057 100644 --- a/src/doc/book/mutability.md +++ b/src/doc/book/mutability.md @@ -62,8 +62,8 @@ Note that here, the `x` is mutable, but not the `y`. # 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, -for example, [`Arc`][arc]: +it’s not able to be changed: we are referring to its ‘exterior mutability’ that +in this case is immutable. Consider, for example, [`Arc`][arc]: ```rust use std::sync::Arc;