diff options
author | Georg Brandl <georg@python.org> | 2007-05-29 07:16:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-05-29 07:16:47 (GMT) |
commit | d4e42dccf0fb27e598c3c69fe6671b382031f4b3 (patch) | |
tree | aec122ff8626745ec8635860317b6b7d4cc00b86 /Doc/howto | |
parent | e9607e24a7276043ab7ac4ee8d3bcdc23b7b7fc4 (diff) | |
download | cpython-d4e42dccf0fb27e598c3c69fe6671b382031f4b3.zip cpython-d4e42dccf0fb27e598c3c69fe6671b382031f4b3.tar.gz cpython-d4e42dccf0fb27e598c3c69fe6671b382031f4b3.tar.bz2 |
Fix rst markup.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/functional.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst index 124dd01..bfe67d1 100644 --- a/Doc/howto/functional.rst +++ b/Doc/howto/functional.rst @@ -978,7 +978,7 @@ element. that's a slice of the iterator. With a single ``stop`` argument, it will return the first ``stop`` elements. If you supply a starting index, you'll get ``stop-start`` -elements, and if you supply a value for ``step`, elements will be +elements, and if you supply a value for ``step``, elements will be skipped accordingly. Unlike Python's string and list slicing, you can't use negative values for ``start``, ``stop``, or ``step``. |