Skip to content

Commit

Permalink
Remove colon from ch04-01-what-is-ownership.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnaud-Parion authored Jan 25, 2024
1 parent 71352de commit a80c590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ch04-01-what-is-ownership.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit a80c590

Please sign in to comment.