From 7226d001712ec48897d1edf9318ad0479e0b0f44 Mon Sep 17 00:00:00 2001 From: Joel Jose Date: Mon, 27 Dec 2021 14:06:03 +0530 Subject: [PATCH] Fixed grammatical error --- nostarch/chapter04.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nostarch/chapter04.md b/nostarch/chapter04.md index 4e429b0971..8334bf1202 100644 --- a/nostarch/chapter04.md +++ b/nostarch/chapter04.md @@ -150,7 +150,7 @@ understanding by introducing the `String` type. To illustrate the rules of ownership, we need a data type that is more complex than those we covered in the “Data Types” section of Chapter 3. The types -covered previously are all of a known size, can be stored on the stack and popped +covered previously are all a known size, can be stored on the stack and popped off the stack when their scope is over, and can be quickly and trivially copied to make a new, independent instance if another part of code needs to use the same value in a different scope. But we want to look at data that is stored on