diff options
author | Mandeep <mandeep052@gmail.com> | 2020-09-15 19:20:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 19:20:49 (GMT) |
commit | 5531269f698f789d1247123fd82681f7a455f66e (patch) | |
tree | 70fea6da2b6c812f2b28138ce39fdd01d3ae58b3 | |
parent | e5fbe0cbd4be99ced5f000ad382208ad2a561c90 (diff) | |
download | cpython-5531269f698f789d1247123fd82681f7a455f66e.zip cpython-5531269f698f789d1247123fd82681f7a455f66e.tar.gz cpython-5531269f698f789d1247123fd82681f7a455f66e.tar.bz2 |
Improve the description of difflib in the documentation (GH-22253)
From "can produce difference information in various formats ..."
to " can produce information about file differences in various formats ..."
Automerge-Triggered-By: @Mariatta
-rw-r--r-- | Doc/library/difflib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/difflib.rst b/Doc/library/difflib.rst index 25e3511..aa08988 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -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. |