From 62060dc222eb8303513decfe5da302ae9d79f309 Mon Sep 17 00:00:00 2001 From: Dmitry Krasilnikov Date: Sun, 31 Aug 2025 11:27:14 +0200 Subject: [PATCH] fix: remove extra comma in Chapter 15 Box --- src/ch15-01-box.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch15-01-box.md b/src/ch15-01-box.md index d48b7b7863..078720b55c 100644 --- a/src/ch15-01-box.md +++ b/src/ch15-01-box.md @@ -24,7 +24,7 @@ situation, we can store the large amount of data on the heap in a box. Then, only the small amount of pointer data is copied around on the stack, while the data it references stays in one place on the heap. The third case is known as a _trait object_, and [“Using Trait Objects That Allow for Values of Different -Types,”][trait-objects] in Chapter 18 is devoted to that topic. +Types”][trait-objects] in Chapter 18 is devoted to that topic. So what you learn here you’ll apply again in that section! ### Using `Box` to Store Data on the Heap