File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ edges pointing to it.
99
1010To enable multiple ownership, Rust has a type called ` Rc<T> ` , which is an
1111abbreviation for * reference counting* . The ` Rc<T> ` type keeps track of the
12- number of references to a value which determines whether or not a value is
13- still in use. If there are zero references to a value, the value can be cleaned
14- up without any references becoming invalid.
12+ number of references to a value to determine whether or not the value is still
13+ in use. If there are zero references to a value, the value can be cleaned up
14+ without any references becoming invalid.
1515
1616Imagine ` Rc<T> ` as a TV in a family room. When one person enters to watch TV,
1717they turn it on. Others can come into the room and watch the TV. When the last
You can’t perform that action at this time.
0 commit comments