diff options
| author | R David Murray <rdmurray@bitdance.com> | 2016-06-02 15:14:30 -0400 |
|---|---|---|
| committer | R David Murray <rdmurray@bitdance.com> | 2016-06-02 15:14:30 -0400 |
| commit | f86959d883af71856da9ba4de3f48104ec4d5770 (patch) | |
| tree | 416ee19f300b207be5a57c4c5ec781145eb26665 /Doc/library/xml.sax.reader.rst | |
| parent | d85a1e6b552cd2700500a97d82c3f3ce4cfdeed6 (diff) | |
| download | cpython-git-f86959d883af71856da9ba4de3f48104ec4d5770.tar.gz | |
#13784: fix xml.sax.reader getColumn/LineNumber docs.
verification and patch by Emily Morehouse.
Diffstat (limited to 'Doc/library/xml.sax.reader.rst')
| -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 b4acd4cdbb..47d23d6b98 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() |
