From 8b5e92e1cf49337d3de44c48f82c511e7a87b406 Mon Sep 17 00:00:00 2001 From: pfabri Date: Tue, 29 Nov 2016 21:05:18 +0100 Subject: [PATCH] Fixed a typo --- Memory-model.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Memory-model.md b/Memory-model.md index d78c4fe..cfcd6ea 100644 --- a/Memory-model.md +++ b/Memory-model.md @@ -6,9 +6,9 @@ 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 creates 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 create 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: +`StaticJsonBuffer` has a template parameter that determines its capacity. For example, the following line creates a `StaticJsonBuffer` with a capacity of 200 bytes: StaticJsonBuffer<200> jsonBuffer;