From 332fdcd6f184bceb7037c1fa0933fe982dc1eae4 Mon Sep 17 00:00:00 2001 From: Sam Clift Date: Wed, 14 Jan 2015 15:19:24 +0000 Subject: [PATCH] arrays to lists --- docs/scenarios/json.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/scenarios/json.rst b/docs/scenarios/json.rst index 8a6e492..c585731 100644 --- a/docs/scenarios/json.rst +++ b/docs/scenarios/json.rst @@ -1,9 +1,9 @@ JSON =========== -The `json `_ library can read JSON strings into a Python dictionary or array. It can also serialize Python dictionaries or arrays into JSON strings. +The `json `_ library can read JSON strings into a Python dictionary or list. It can also serialize Python dictionaries or lists into JSON strings. -* There are six basic types in JSON: objects, arrays, numbers, strings, booleans, and null. +* There are six basic types in JSON: objects, lists, numbers, strings, booleans, and null. * The root element of JSON representation is an object, signified by ``{ ... }``. JSON objects are analogous to Python dictionaries: they have keys which correspond to values. * JSON does not use single quotes. JSON exclusively uses double quotes. Using single quotes in the place of double quotes is invalid JSON syntax.