diff --git a/src/ch15-06-reference-cycles.md b/src/ch15-06-reference-cycles.md index a28df64386..91b176f3b6 100644 --- a/src/ch15-06-reference-cycles.md +++ b/src/ch15-06-reference-cycles.md @@ -231,7 +231,7 @@ We still have `leaf` as one of the children of `branch`. Once we have the reference to its parent. We use the `borrow_mut` method on the `RefCell>` in the `parent` field of `leaf`, and then we use the `Rc::downgrade` function to create a `Weak` reference to `branch` from -the `Rc` in `branch.` +the `Rc` in `branch`. When we print the parent of `leaf` again, this time we’ll get a `Some` variant holding `branch`: now `leaf` can access its parent! When we print `leaf`, we