summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-07-26 22:11:55 (GMT)
committerGitHub <noreply@github.com>2021-07-26 22:11:55 (GMT)
commit11749e2dc20ad6a76e9a39e948853e89b2b4bbed (patch)
tree7b370ec4036b21ae99ca0b46c1d82ac122f9d43f /Doc/howto
parent6c7ec7282b68dcd0f3af0f1ccc6345da4bc06931 (diff)
downloadcpython-11749e2dc20ad6a76e9a39e948853e89b2b4bbed.zip
cpython-11749e2dc20ad6a76e9a39e948853e89b2b4bbed.tar.gz
cpython-11749e2dc20ad6a76e9a39e948853e89b2b4bbed.tar.bz2
bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)
Co-authored-by: Ɓukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Doc/howto')
-rw-r--r--Doc/howto/ipaddress.rst2
-rw-r--r--Doc/howto/logging-cookbook.rst2
-rw-r--r--Doc/howto/sockets.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/ipaddress.rst b/Doc/howto/ipaddress.rst
index 452e367..46ba69a 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 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/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 20b02c8..2ab8c52 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -332,7 +332,7 @@ Dealing with handlers that block
.. currentmodule:: logging.handlers
Sometimes you have to get your logging handlers to do their work without
-blocking the thread you're logging from. This is common in Web applications,
+blocking the thread you're logging from. This is common in web applications,
though of course it also occurs in other scenarios.
A common culprit which demonstrates sluggish behaviour is the
diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst
index d6ed128..e58f78a 100644
--- a/Doc/howto/sockets.rst
+++ b/Doc/howto/sockets.rst
@@ -45,7 +45,7 @@ likely to be other forms of IPC that are faster, but for
cross-platform communication, sockets are about the only game in town.
They were invented in Berkeley as part of the BSD flavor of Unix. They spread
-like wildfire with the Internet. With good reason --- the combination of sockets
+like wildfire with the internet. With good reason --- the combination of sockets
with INET makes talking to arbitrary machines around the world unbelievably easy
(at least compared to other schemes).