diff options
author | Raymond Hettinger <python@rcn.com> | 2014-03-29 18:49:11 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-03-29 18:49:11 (GMT) |
commit | 3708349c07d79afb4b3f28fab96210bacff555eb (patch) | |
tree | 661d08d474e1ef103e7d7ac5a76543ff05f9774d | |
parent | 3ac866539f6b43aa61367749d7c7f2e8a71f5fa7 (diff) | |
download | cpython-3708349c07d79afb4b3f28fab96210bacff555eb.zip cpython-3708349c07d79afb4b3f28fab96210bacff555eb.tar.gz cpython-3708349c07d79afb4b3f28fab96210bacff555eb.tar.bz2 |
Minor readability improvement.
-rw-r--r-- | Doc/library/xml.etree.elementtree.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index 24e5084..f14742e 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -319,7 +319,7 @@ Supported XPath syntax +=======================+======================================================+ | ``tag`` | Selects all child elements with the given tag. | | | For example, ``spam`` selects all child elements | -| | named ``spam``, ``spam/egg`` selects all | +| | named ``spam``, and ``spam/egg`` selects all | | | grandchildren named ``egg`` in all children named | | | ``spam``. | +-----------------------+------------------------------------------------------+ |