Skip to content

Commit 332fdcd

Browse files
author
Sam Clift
committed
arrays to lists
1 parent f5ee4e2 commit 332fdcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/scenarios/json.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
JSON
22
===========
33

4-
The `json <https://docs.python.org/2/library/json.html>`_ library can read JSON strings into a Python dictionary or array. It can also serialize Python dictionaries or arrays into JSON strings.
4+
The `json <https://docs.python.org/2/library/json.html>`_ library can read JSON strings into a Python dictionary or list. It can also serialize Python dictionaries or lists into JSON strings.
55

6-
* There are six basic types in JSON: objects, arrays, numbers, strings, booleans, and null.
6+
* There are six basic types in JSON: objects, lists, numbers, strings, booleans, and null.
77
* 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.
88
* JSON does not use single quotes. JSON exclusively uses double quotes. Using single quotes in the place of double quotes is invalid JSON syntax.
99

0 commit comments

Comments
 (0)