diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-07-27 08:57:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-27 08:57:52 (GMT) |
commit | 2e41df4d60d71a2551b9605d07321f75cfb52adf (patch) | |
tree | 60084aeb664661e9f763b9449083020c2538d27f /Doc | |
parent | d61b69f02d441ae517109a4428f2a18416c9ff0f (diff) | |
download | cpython-2e41df4d60d71a2551b9605d07321f75cfb52adf.zip cpython-2e41df4d60d71a2551b9605d07321f75cfb52adf.tar.gz cpython-2e41df4d60d71a2551b9605d07321f75cfb52adf.tar.bz2 |
bpo-44740: Make minor edits to lowercasing "internet" and "web". (GH-27385)
Follow up to 11749e2dc20ad6a76e9a39e948853e89b2b4bbed
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/howto/ipaddress.rst | 2 | ||||
-rw-r--r-- | Doc/library/http.server.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/2.3.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/ipaddress.rst b/Doc/howto/ipaddress.rst index 46ba69a..e852db9 100644 --- a/Doc/howto/ipaddress.rst +++ b/Doc/howto/ipaddress.rst @@ -32,7 +32,7 @@ A Note on IP Versions --------------------- For readers that aren't particularly familiar with IP addressing, it's -important to know that the internet protocol is currently in the process +important to know that the Internet Protocol (IP) is currently in the process of moving from version 4 of the protocol to version 6. This transition is occurring largely because version 4 of the protocol doesn't provide enough addresses to handle the needs of the whole world, especially given the diff --git a/Doc/library/http.server.rst b/Doc/library/http.server.rst index 1aa0cba..5ffe6ba 100644 --- a/Doc/library/http.server.rst +++ b/Doc/library/http.server.rst @@ -14,7 +14,7 @@ -------------- -This module defines classes for implementing HTTP servers (web servers). +This module defines classes for implementing HTTP servers. .. warning:: diff --git a/Doc/whatsnew/2.3.rst b/Doc/whatsnew/2.3.rst index 7d09302..cf55520 100644 --- a/Doc/whatsnew/2.3.rst +++ b/Doc/whatsnew/2.3.rst @@ -672,7 +672,7 @@ with older versions of the Distutils:: from distutils import core kw = {'name': "Quixote", 'version': "0.5.1", - 'description': "A highly Pythonic web application framework", + 'description': "A highly Pythonic Web application framework", # ... } |