diff --git a/src/smart-pointers/box.md b/src/smart-pointers/box.md index 176f5920..e13f3124 100644 --- a/src/smart-pointers/box.md +++ b/src/smart-pointers/box.md @@ -82,7 +82,7 @@ fn main() { - Remove the `Box` in the List definition and show the compiler error. We get the message "recursive without indirection", because for data recursion, we - have to use indirection, a Box or reference of some kind, instead of storing + have to use indirection, a `Box` or reference of some kind, instead of storing the value directly. # More to Explore