]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Improve the description of difflib in the documentation (GH-22253)
authorMandeep <mandeep052@gmail.com>
Tue, 15 Sep 2020 19:20:49 +0000 (15:20 -0400)
committerGitHub <noreply@github.com>
Tue, 15 Sep 2020 19:20:49 +0000 (12:20 -0700)
From "can produce difference information in various formats ..."
to " can produce information about file differences in various formats ..."

Automerge-Triggered-By: @Mariatta
Doc/library/difflib.rst

index 25e3511d017858fa7f5ae0c14ddc48da5f982839..aa08988c8b36f71e574a4909dff4a7c74190e29f 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.