From bb0192613b6ca338d5ff0c56da5d7891d7fbbb97 Mon Sep 17 00:00:00 2001 From: Robin van den Hurk <24567349+RobinvandenHurk@users.noreply.github.com> Date: Mon, 30 Dec 2019 21:49:46 +0100 Subject: [PATCH] Update README.md Changed variable name to match with next snippet --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e718a2..f65c2ed 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Parsing JSON To parse such a structure with aJson you simply convert it to a object tree: ```c -aJsonObject* jsonObject = aJson.parse(json_string); +aJsonObject* root = aJson.parse(json_string); ``` (assuming you got the JSON string in the variable json_string - as a char*)