From ac731f007f1c0c6220e7d7269b74383f0f5c15bc Mon Sep 17 00:00:00 2001 From: markprocess <40411872+markprocess@users.noreply.github.com> Date: Thu, 25 Oct 2018 09:13:53 -0400 Subject: [PATCH] Update string.md --- docs/data-types/string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data-types/string.md b/docs/data-types/string.md index f0e7756..41a08e0 100644 --- a/docs/data-types/string.md +++ b/docs/data-types/string.md @@ -28,7 +28,7 @@ Instead, they provide code that is capable of ensuring strings remain safe. `ManagedString` provides this equivalent functionality for the micro:bit, as a building block for higher level languages. However, it can also makes programming the micro:bit in C easier too! !!! note - This is a **managed type**. This means that it will automatically use and release memory as needed. There is no need for you to explicitly free or release memory when your done - the memory will be freed as soon as the last piece of code stops using the data. + This is a **managed type**. This means that it will automatically use and release memory as needed. There is no need for you to explicitly free or release memory when you're done - the memory will be freed as soon as the last piece of code stops using the data. ## Creating Strings