From cd79cc41a33c7a5984fc70bd8b31fa0af2676939 Mon Sep 17 00:00:00 2001 From: Charisee Chiw Date: Tue, 14 Feb 2023 12:22:49 -0800 Subject: [PATCH] Remove code markers for compiler message (#402) Follow up on comment in merged PR #360, working on issue #274 --- src/std/box-recursive.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/std/box-recursive.md b/src/std/box-recursive.md index 37ceffad..20ab848c 100644 --- a/src/std/box-recursive.md +++ b/src/std/box-recursive.md @@ -38,6 +38,6 @@ the compiler would not compute a fixed size of the struct in memory, it would lo * `Box` solves this problem as it has the same size as a regular pointer and just points at the next element of the `List` in the heap. -* Remove the `Box` in the List definition and show the compiler error. `Recursive with indirection` is a hint you might want to use a Box or reference of some kind, instead of storing a value directly. - +* Remove the `Box` in the List definition and show the compiler error. "Recursive with indirection" is a hint you might want to use a Box or reference of some kind, instead of storing a value directly. +