diff options
Diffstat (limited to 'pylint/extensions/docparams.py')
-rw-r--r-- | pylint/extensions/docparams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/docparams.py b/pylint/extensions/docparams.py index b1ca080de..43e46351d 100644 --- a/pylint/extensions/docparams.py +++ b/pylint/extensions/docparams.py @@ -29,7 +29,7 @@ class DocstringParameterChecker(BaseChecker): the documentation, i.e. also report documented parameters that are missing in the signature. This is important to find cases where parameters are renamed only in the code, not in the documentation. - * Check that all explicity raised exceptions in a function are documented + * Check that all explicitly raised exceptions in a function are documented in the function docstring. Caught exceptions are ignored. Activate this checker by adding the line:: |