diff --git a/src/ch15-02-deref.md b/src/ch15-02-deref.md index b2f608169a..c841f20b46 100644 --- a/src/ch15-02-deref.md +++ b/src/ch15-02-deref.md @@ -68,7 +68,7 @@ reference; the dereference operator will work as shown in Listing 15-7: `Box` The only difference between Listing 15-7 and Listing 15-6 is that here we set -`y` to be an instance of a box pointing to the value in `x` rather than a +`y` to be an instance of a box pointing to a copied value of `x` rather than a reference pointing to the value of `x`. In the last assertion, we can use the dereference operator to follow the box’s pointer in the same way that we did when `y` was a reference. Next, we’ll explore what is special about `Box`