summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-04-05 13:57:55 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-04-05 13:57:55 (GMT)
commit9e8346cb4d9203293fa82a6728c5774bea4c6d11 (patch)
treed58606b16e7f3484a0555556ea0f0e0ebd0408c4 /Doc/howto
parenta0bc7dc475dfe41b183d796534dbd74a6ce2f506 (diff)
downloadcpython-9e8346cb4d9203293fa82a6728c5774bea4c6d11.zip
cpython-9e8346cb4d9203293fa82a6728c5774bea4c6d11.tar.gz
cpython-9e8346cb4d9203293fa82a6728c5774bea4c6d11.tar.bz2
Merged revisions 79799 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r79799 | ezio.melotti | 2010-04-05 16:25:51 +0300 (Mon, 05 Apr 2010) | 9 lines Merged revisions 79797 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r79797 | ezio.melotti | 2010-04-05 15:51:45 +0300 (Mon, 05 Apr 2010) | 1 line Fix some broken URLs. ........ ................
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/functional.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/functional.rst b/Doc/howto/functional.rst
index 920dc2d..76a4400 100644
--- a/Doc/howto/functional.rst
+++ b/Doc/howto/functional.rst
@@ -336,7 +336,7 @@ substring.
List comprehensions and generator expressions (short form: "listcomps" and
"genexps") are a concise notation for such operations, borrowed from the
-functional programming language Haskell (http://www.haskell.org). You can strip
+functional programming language Haskell (http://www.haskell.org/). You can strip
all the whitespace from a stream of strings with the following code::
line_list = [' line 1\n', 'line 2 \n', ...]