diff options
author | Peter Anderson <BWPanda@users.noreply.github.com> | 2023-06-21 22:41:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-21 22:41:14 +0000 |
commit | 0f64c6a952da1e5323d0578ac24b1715549fef2e (patch) | |
tree | 12bcaf26a0539396122636790fd90cb64755f6e1 | |
parent | b6ba664830d9ff1bd7eeb72294fa1e7a3827e42e (diff) | |
download | redot-engine-0f64c6a952da1e5323d0578ac24b1715549fef2e.tar.gz |
Fix example in JSON class.
-rw-r--r-- | doc/classes/JSON.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/JSON.xml b/doc/classes/JSON.xml index 0f527ba51d..c630d2c1af 100644 --- a/doc/classes/JSON.xml +++ b/doc/classes/JSON.xml @@ -14,6 +14,7 @@ # Save data # ... # Retrieve data + var json = JSON.new() var error = json.parse(json_string) if error == OK: var data_received = json.data |