]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Improve the description of difflib in the documentation (GH-22253) (GH-22260)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 15 Sep 2020 19:45:29 +0000 (12:45 -0700)
committerGitHub <noreply@github.com>
Tue, 15 Sep 2020 19:45:29 +0000 (12:45 -0700)
From "can produce difference information in various formats ..."
to " can produce information about file differences in various formats ..."

Automerge-Triggered-By: @Mariatta
(cherry picked from commit 5531269f698f789d1247123fd82681f7a455f66e)

Co-authored-by: Mandeep <mandeep052@gmail.com>
Doc/library/difflib.rst

index 0837809df5902cc82134a4ae8631ac874ce56a2d..a8543b38c197ec70ef3dff219e64542fce39be36 100644 (file)
@@ -18,8 +18,8 @@
 --------------
 
 This module provides classes and functions for comparing sequences. It
-can be used for example, for comparing files, and can produce difference
-information in various formats, including HTML and context and unified
+can be used for example, for comparing files, and can produce information
+about file differences in various formats, including HTML and context and unified
 diffs. For comparing directories and files, see also, the :mod:`filecmp` module.