Skip to content

Commit 30b7b4f

Browse files
authored
Docs: 'still' is a better word than 'nonetheless' (#114598)
1 parent 8710fae commit 30b7b4f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Doc/library/dataclasses.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Module contents
141141
then :func:`dataclass` *may* add an implicit :meth:`~object.__hash__` method.
142142
Although not recommended, you can force :func:`dataclass` to create a
143143
:meth:`~object.__hash__` method with ``unsafe_hash=True``. This might be the case
144-
if your class is logically immutable but can nonetheless be mutated.
144+
if your class is logically immutable but can still be mutated.
145145
This is a specialized use case and should be considered carefully.
146146

147147
Here are the rules governing implicit creation of a :meth:`~object.__hash__`

Doc/library/imaplib.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ An :class:`IMAP4` instance has the following methods:
531531
allowed creation of such tags, and popular IMAP servers, such as Gmail,
532532
accept and produce such flags. There are non-Python programs which also
533533
create such tags. Although it is an RFC violation and IMAP clients and
534-
servers are supposed to be strict, imaplib nonetheless continues to allow
534+
servers are supposed to be strict, imaplib still continues to allow
535535
such tags to be created for backward compatibility reasons, and as of
536536
Python 3.6, handles them if they are sent from the server, since this
537537
improves real-world compatibility.

Doc/using/cmdline.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ Setting the environment variable ``TERM`` to ``dumb`` will disable color.
623623

624624
If the environment variable ``FORCE_COLOR`` is set, then color will be
625625
enabled regardless of the value of TERM. This is useful on CI systems which
626-
aren’t terminals but can none-the-less display ANSI escape sequences.
626+
aren’t terminals but can still display ANSI escape sequences.
627627

628628
If the environment variable ``NO_COLOR`` is set, Python will disable all color
629629
in the output. This takes precedence over ``FORCE_COLOR``.

0 commit comments

Comments
 (0)