diff options
author | R David Murray <rdmurray@bitdance.com> | 2016-06-02 19:15:12 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2016-06-02 19:15:12 (GMT) |
commit | e747dd89b6074ca98729e0cc8afdf8697d4e38e3 (patch) | |
tree | 0c38faaa81addb6964f340e35ea87582bac34362 | |
parent | d6129204843f9dccdf6105ea3152db1e276d6694 (diff) | |
parent | f86959d883af71856da9ba4de3f48104ec4d5770 (diff) | |
download | cpython-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.rst | 4 |
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() |