From 1ef8270608beeb3738c4ad5725abc4dc10dc81b9 Mon Sep 17 00:00:00 2001 From: Meghan Westvig <36444576+MEWestvig@users.noreply.github.com> Date: Sun, 24 Feb 2019 07:35:00 +0200 Subject: [PATCH] Fixing spelling errors (#27194) --- guide/english/c/dynamic-memory-management/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guide/english/c/dynamic-memory-management/index.md b/guide/english/c/dynamic-memory-management/index.md index 08854ef19f..d378476959 100644 --- a/guide/english/c/dynamic-memory-management/index.md +++ b/guide/english/c/dynamic-memory-management/index.md @@ -3,7 +3,8 @@ title: Dynamic Memory Management --- # Dynamic Memory Management -Sometimes you will need to allocate memory spaces in the heap also known as the dynamic memory. This is particulary useful when you do not know during compile time how large a data structure (like an array) will be. + +Sometimes you will need to allocate memory spaces in the heap also known as the dynamic memory. This is particularly useful when you do not know during compile time how large a data structure (like an array) will be. ## An Example Here's a simple example where we allocate an array, asking the user to choose the size.