summaryrefslogtreecommitdiff
path: root/Doc/library/concurrent.futures.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-28 02:20:39 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-28 02:20:39 +0000
commitfe289c0f6f2ecbc06a9aa4183304bb6db7c03f7b (patch)
tree715a1df308b1103b7dc2e34db063fbe0870c3ef6 /Doc/library/concurrent.futures.rst
parent6bb91f3b6e51352f91bcf785d3f6fe160ed2cd85 (diff)
downloadcpython-git-fe289c0f6f2ecbc06a9aa4183304bb6db7c03f7b.tar.gz
Issue #26553: Capitalization of HTTP, HTTPS, FTP, and URL
Patch by Anish Shah and Aatish Neupane.
Diffstat (limited to 'Doc/library/concurrent.futures.rst')
-rw-r--r--Doc/library/concurrent.futures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index 15858be0be..ae03f4b8f4 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -153,7 +153,7 @@ ThreadPoolExecutor Example
'http://www.bbc.co.uk/',
'http://some-made-up-domain.com/']
- # Retrieve a single page and report the url and contents
+ # Retrieve a single page and report the URL and contents
def load_url(url, timeout):
with urllib.request.urlopen(url, timeout=timeout) as conn:
return conn.read()