From d6d311c89c52e2a7e86e3a836b3b18059401abac Mon Sep 17 00:00:00 2001 From: pfabri Date: Tue, 29 Nov 2016 21:04:05 +0100 Subject: [PATCH] Updated Memory model (markdown) --- Memory-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Memory-model.md b/Memory-model.md index 34303de..d78c4fe 100644 --- a/Memory-model.md +++ b/Memory-model.md @@ -6,7 +6,7 @@ Arduino JSON uses a preallocated memory pool to store the object tree, this is done by the `StaticJsonBuffer` class. -Before using any function of the library you need to create a `StaticJsonBuffer`. Then you can use this instance to create arrays and objects, or parse a JSON string. +Before using any function of the library you need to create a `StaticJsonBuffer`. Then you can use this instance to creates arrays and objects, or parse a JSON string. `StaticJsonBuffer` has a template parameter that determines its capacity. For example, the following line create a `StaticJsonBuffer` with a capacity of 200 bytes: