From a80c5902aebb9cbf3436c638f93df309eabafd1f Mon Sep 17 00:00:00 2001 From: Arnaud Parion <113245630+Arnaud-Parion@users.noreply.github.com> Date: Thu, 25 Jan 2024 12:12:34 +0100 Subject: [PATCH] Remove colon from ch04-01-what-is-ownership.md --- src/ch04-01-what-is-ownership.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch04-01-what-is-ownership.md b/src/ch04-01-what-is-ownership.md index 5249c2dd77..3ed7b97ce2 100644 --- a/src/ch04-01-what-is-ownership.md +++ b/src/ch04-01-what-is-ownership.md @@ -192,7 +192,7 @@ to hold the contents. This means: * We need a way of returning this memory to the allocator when we’re done with our `String`. -That first part is done by us: when we call `String::from`, its implementation +That first part is done by us when we call `String::from`, its implementation requests the memory it needs. This is pretty much universal in programming languages.