summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2016-06-02 19:15:12 (GMT)
committerR David Murray <rdmurray@bitdance.com>2016-06-02 19:15:12 (GMT)
commite747dd89b6074ca98729e0cc8afdf8697d4e38e3 (patch)
tree0c38faaa81addb6964f340e35ea87582bac34362
parentd6129204843f9dccdf6105ea3152db1e276d6694 (diff)
parentf86959d883af71856da9ba4de3f48104ec4d5770 (diff)
downloadcpython-e747dd89b6074ca98729e0cc8afdf8697d4e38e3.zip
cpython-e747dd89b6074ca98729e0cc8afdf8697d4e38e3.tar.gz
cpython-e747dd89b6074ca98729e0cc8afdf8697d4e38e3.tar.bz2
Merge: #13784: fix xml.sax.reader getColumn/LineNumber docs.
-rw-r--r--Doc/library/xml.sax.reader.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/xml.sax.reader.rst b/Doc/library/xml.sax.reader.rst
index b4acd4c..47d23d6 100644
--- a/Doc/library/xml.sax.reader.rst
+++ b/Doc/library/xml.sax.reader.rst
@@ -228,12 +228,12 @@ Instances of :class:`Locator` provide these methods:
.. method:: Locator.getColumnNumber()
- Return the column number where the current event ends.
+ Return the column number where the current event begins.
.. method:: Locator.getLineNumber()
- Return the line number where the current event ends.
+ Return the line number where the current event begins.
.. method:: Locator.getPublicId()