Issue #17225: JSON decoder now counts columns in the first line starting
with 1, as in other lines.
diff --git a/Doc/library/json.rst b/Doc/library/json.rst
index bdb6436..f98e0ef 100644
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -102,7 +102,7 @@
         "json": "obj"
     }
     $ echo '{1.2:3.4}' | python -mjson.tool
-    Expecting property name enclosed in double quotes: line 1 column 1 (char 1)
+    Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
 
 .. highlight:: python3