From c763932288ce73d9feb1bffc9bc5c4f50ba2a6dd Mon Sep 17 00:00:00 2001 From: Gergely Risko Date: Mon, 4 Mar 2024 15:46:59 +0100 Subject: [PATCH] Small formatting fix (#1866) This is a typo, that actually @mgeisler stopped in my previous PR, I was just not around to fix it fast enough to make it to the previous merge. Thanks for the catch! --- src/smart-pointers/box.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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