summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-09-24 17:07:39 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2012-09-24 17:07:39 +0300
commitc926c59d80cc7068bda210f5d47af898e39a314b (patch)
tree418de3db15f79c5449cd563f0b85136ce4fe08d2
parent4f24af065ddafef6f0f20a481e7abfacbc303fcc (diff)
downloadcpython-git-c926c59d80cc7068bda210f5d47af898e39a314b.tar.gz
#16017: capitalize URLs.
-rw-r--r--Doc/tutorial/stdlib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst
index 97297434ed..128e6a6f42 100644
--- a/Doc/tutorial/stdlib.rst
+++ b/Doc/tutorial/stdlib.rst
@@ -148,7 +148,7 @@ Internet Access
There are a number of modules for accessing the internet and processing internet
protocols. Two of the simplest are :mod:`urllib.request` for retrieving data
-from urls and :mod:`smtplib` for sending mail::
+from URLs and :mod:`smtplib` for sending mail::
>>> from urllib.request import urlopen
>>> for line in urlopen('http://tycho.usno.navy.mil/cgi-bin/timer.pl'):