diff options
author | Petri Lehtinen <petri@digip.org> | 2012-08-27 17:27:51 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2012-08-27 17:28:08 (GMT) |
commit | 79dbded0fae7c1c10454a391ae3ebbb39c5b7a0f (patch) | |
tree | e66da186907bcd1dc36279994f41925866f712c4 | |
parent | 7f79f7cf2355a3c54b0cc33e69dc17ff4ca3bd0f (diff) | |
parent | 72c6eefcc638c6ca32c43f85a5180d9f091b2755 (diff) | |
download | cpython-79dbded0fae7c1c10454a391ae3ebbb39c5b7a0f.zip cpython-79dbded0fae7c1c10454a391ae3ebbb39c5b7a0f.tar.gz cpython-79dbded0fae7c1c10454a391ae3ebbb39c5b7a0f.tar.bz2 |
Merge: Fix a JSON doc typo
-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 |