Replace it's by its.

This commit is contained in:
Kaivo Anastetiks 2016-07-05 07:26:38 -04:00
parent df93e18418
commit 6a85183e6f

View file

@ -62,7 +62,7 @@ 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 doesnt mean that
its not able to be changed: we are referring to it's exterior mutability that
its not able to be changed: we are referring to its exterior mutability that
in this case is immutable. Consider, for example, [`Arc<T>`][arc]:
```rust