diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 10:52:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 10:52:38 (GMT) |
commit | cf3fb259329eedfa9d2c802b2ea5ced287c21e78 (patch) | |
tree | bd09350c4ac4d66064526573c19ebbcd27f77279 /Doc/howto/functional.rst | |
parent | bb75e4e5d243a32cf31b91543b06b829c63e2c70 (diff) | |
download | cpython-cf3fb259329eedfa9d2c802b2ea5ced287c21e78.zip cpython-cf3fb259329eedfa9d2c802b2ea5ced287c21e78.tar.gz cpython-cf3fb259329eedfa9d2c802b2ea5ced287c21e78.tar.bz2 |
Add :term: for generators.
Diffstat (limited to 'Doc/howto/functional.rst')
-rw-r--r-- | Doc/howto/functional.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index 39a1e05..b0739c7 100644 --- a/Doc/howto/functional.rst +++ b/Doc/howto/functional.rst @@ -13,8 +13,8 @@ disclaimer.) In this document, we'll take a tour of Python's features suitable for implementing programs in a functional style. After an introduction to the concepts of functional programming, we'll look at language features such as -iterators and generators and relevant library modules such as :mod:`itertools` -and :mod:`functools`. +iterators and :term:`generator`\s and relevant library modules such as +:mod:`itertools` and :mod:`functools`. Introduction |