diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-30 23:41:10 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-10-30 23:41:10 (GMT) |
commit | a5ad9da50422a5ce2f80e05b816e74c0e004e247 (patch) | |
tree | bec4fb43b7d99126cdca5fa421e30f749b847ea1 | |
parent | cfad18dbdb81d22408bae38eb6c35da4db2ab05e (diff) | |
download | cpython-a5ad9da50422a5ce2f80e05b816e74c0e004e247.zip cpython-a5ad9da50422a5ce2f80e05b816e74c0e004e247.tar.gz cpython-a5ad9da50422a5ce2f80e05b816e74c0e004e247.tar.bz2 |
Issue #25519: Mark difflib.ndiff as a functions where not already.
-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 89a457c..03e8cb8 100644 --- a/Doc/library/difflib.rst +++ b/Doc/library/difflib.rst @@ -94,9 +94,9 @@ diffs. For comparing directories and files, see also, the :mod:`filecmp` module. *wrapcolumn* is an optional keyword to specify column number where lines are broken and wrapped, defaults to ``None`` where lines are not wrapped. - *linejunk* and *charjunk* are optional keyword arguments passed into ``ndiff()`` + *linejunk* and *charjunk* are optional keyword arguments passed into :func:`ndiff` (used by :class:`HtmlDiff` to generate the side by side HTML differences). See - ``ndiff()`` documentation for argument default values and descriptions. + :func:`ndiff` documentation for argument default values and descriptions. The following methods are public: |