From 74c9d7159fbcd1437db714cc2572afe67b5df76e Mon Sep 17 00:00:00 2001 From: Joel Jose Date: Mon, 27 Dec 2021 14:04:40 +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 ec8aa0eb2..4e429b097 100644 --- a/nostarch/chapter04.md +++ b/nostarch/chapter04.md @@ -95,7 +95,7 @@ strings. > data on the heap so you don’t run out of space are all problems that ownership > addresses. Once you understand ownership, you won’t need to think about the > stack and the heap very often, but knowing that the main purpose of ownership -> is to manage heap data and can help explain why it works the way it does. +> is to manage heap data can help explain why it works the way it does. ### Ownership Rules