]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Replace ambiguous word "pound" by "hash" in `difflib` docs (#139601)
authorGeorge Ogden <38294960+George-Ogden@users.noreply.github.com>
Sun, 5 Oct 2025 17:10:24 +0000 (19:10 +0200)
committerGitHub <noreply@github.com>
Sun, 5 Oct 2025 17:10:24 +0000 (17:10 +0000)
Doc/library/difflib.rst

index c55ecac340972b335f769a0a00e335b3c5b59041..7a427078909211478baf2a788253212578312e48 100644 (file)
@@ -231,7 +231,7 @@ diffs. For comparing directories and files, see also, the :mod:`filecmp` module.
    *linejunk*: A function that accepts a single string argument, and returns
    true if the string is junk, or false if not. The default is ``None``. There
    is also a module-level function :func:`IS_LINE_JUNK`, which filters out lines
-   without visible characters, except for at most one pound character (``'#'``)
+   without visible characters, except for at most one hash character (``'#'``)
    -- however the underlying :class:`SequenceMatcher` class does a dynamic
    analysis of which lines are so frequent as to constitute noise, and this
    usually works better than using this function.