diff --git a/src/ch15-04-rc.md b/src/ch15-04-rc.md index fb685bc5e9..6b753b5e41 100644 --- a/src/ch15-04-rc.md +++ b/src/ch15-04-rc.md @@ -9,9 +9,9 @@ edges pointing to it. To enable multiple ownership, Rust has a type called `Rc`, which is an abbreviation for *reference counting*. The `Rc` type keeps track of the -number of references to a value which determines whether or not a value is -still in use. If there are zero references to a value, the value can be cleaned -up without any references becoming invalid. +number of references to a value to determine whether or not the value is still +in use. If there are zero references to a value, the value can be cleaned up +without any references becoming invalid. Imagine `Rc` as a TV in a family room. When one person enters to watch TV, they turn it on. Others can come into the room and watch the TV. When the last