diff options
author | Petri Lehtinen <petri@digip.org> | 2012-08-27 17:27:30 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2012-08-27 17:27:30 (GMT) |
commit | 72c6eefcc638c6ca32c43f85a5180d9f091b2755 (patch) | |
tree | d650ade7ee305036655f2243bcdb4f32f80edba3 /Doc/library/json.rst | |
parent | aa935dfe9cb8db13e15c1768dc343e7ee6409dd9 (diff) | |
download | cpython-72c6eefcc638c6ca32c43f85a5180d9f091b2755.zip cpython-72c6eefcc638c6ca32c43f85a5180d9f091b2755.tar.gz cpython-72c6eefcc638c6ca32c43f85a5180d9f091b2755.tar.bz2 |
Fix a JSON doc typo
Diffstat (limited to 'Doc/library/json.rst')
-rw-r--r-- | Doc/library/json.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst index 0229ab5..a5bfcd2 100644 --- a/Doc/library/json.rst +++ b/Doc/library/json.rst @@ -146,7 +146,7 @@ Basic Usage object members will be pretty-printed with that indent level. An indent level of 0, negative, or ``""`` will only insert newlines. ``None`` (the default) selects the most compact representation. Using a positive integer indent - indents that many spaces per level. If *indent* is a string (such at '\t'), + indents that many spaces per level. If *indent* is a string (such as ``"\t"``), that string is used to indent each level. If *separators* is an ``(item_separator, dict_separator)`` tuple, then it |