diff --git a/second-edition/nostarch/chapter15.md b/second-edition/nostarch/chapter15.md index 5f11de63d..d97f8266f 100644 --- a/second-edition/nostarch/chapter15.md +++ b/second-edition/nostarch/chapter15.md @@ -88,7 +88,7 @@ you learn here you’ll apply again in Chapter 17! ### Using a `Box` to Store Data on the Heap -Before we discuss a use case for `Box`, we’ll cover the syntax and how to +Before we discuss this use case for `Box`, we’ll cover the syntax and how to interact with values stored within a `Box`. Listing 15-1 shows how to use a box to store an `i32` value on the heap: diff --git a/second-edition/nostarch/odt/chapter15.docx b/second-edition/nostarch/odt/chapter15.docx index 0aa12e10d..b3db4417e 100644 Binary files a/second-edition/nostarch/odt/chapter15.docx and b/second-edition/nostarch/odt/chapter15.docx differ diff --git a/second-edition/src/ch15-01-box.md b/second-edition/src/ch15-01-box.md index d051953ae..d188ff280 100644 --- a/second-edition/src/ch15-01-box.md +++ b/second-edition/src/ch15-01-box.md @@ -28,7 +28,7 @@ you learn here you’ll apply again in Chapter 17! ### Using a `Box` to Store Data on the Heap -Before we discuss a use case for `Box`, we’ll cover the syntax and how to +Before we discuss this use case for `Box`, we’ll cover the syntax and how to interact with values stored within a `Box`. Listing 15-1 shows how to use a box to store an `i32` value on the heap: