diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-07-05 09:16:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 09:16:10 (GMT) |
commit | 3440d197a55800ecceea3e115e44b4262411359c (patch) | |
tree | 8b2d257a5e24646c798b91a8f618e76b835d2621 /Doc/whatsnew/2.6.rst | |
parent | 2b8ed4d3d4741811da31fc774a202d535755c0a9 (diff) | |
download | cpython-3440d197a55800ecceea3e115e44b4262411359c.zip cpython-3440d197a55800ecceea3e115e44b4262411359c.tar.gz cpython-3440d197a55800ecceea3e115e44b4262411359c.tar.bz2 |
Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH-94551)
Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 0dbb5e5..7524da8 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -523,7 +523,7 @@ PEP 370: Per-user ``site-packages`` Directory When you run Python, the module search path ``sys.path`` usually includes a directory whose path ends in ``"site-packages"``. This -directory is intended to hold locally-installed packages available to +directory is intended to hold locally installed packages available to all users using a machine or a particular site installation. Python 2.6 introduces a convention for user-specific site directories. @@ -2460,7 +2460,7 @@ changes, or look through the Subversion logs for all the details. The function must take a filename and return true if the file should be excluded or false if it should be archived. The function is applied to both the name initially passed to :meth:`add` - and to the names of files in recursively-added directories. + and to the names of files in recursively added directories. (All changes contributed by Lars Gustäbel). @@ -2513,7 +2513,7 @@ changes, or look through the Subversion logs for all the details. (Contributed by Brett Cannon.) * The :mod:`textwrap` module can now preserve existing whitespace - at the beginnings and ends of the newly-created lines + at the beginnings and ends of the newly created lines by specifying ``drop_whitespace=False`` as an argument:: |