summaryrefslogtreecommitdiff
path: root/pylint/extensions
diff options
context:
space:
mode:
authorBruno Daniel <bruno.daniel@blue-yonder.com>2015-05-10 13:23:39 +0200
committerBruno Daniel <bruno.daniel@blue-yonder.com>2015-05-10 13:23:39 +0200
commit19082d1966c7f8b5c998701f7abb0a9c39472730 (patch)
treebbbe5175035cff1c223824bdc025f92ec7207d6e /pylint/extensions
parent91678e7f34c991daf328d6cc3323c797d93ffff4 (diff)
downloadpylint-19082d1966c7f8b5c998701f7abb0a9c39472730.tar.gz
pylint documentation: Demonstrate parameter documentation checking for Google and Numpy style as well.
Diffstat (limited to 'pylint/extensions')
-rw-r--r--pylint/extensions/test/test_check_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/test/test_check_docs.py b/pylint/extensions/test/test_check_docs.py
index 3ed916b..ce633bc 100644
--- a/pylint/extensions/test/test_check_docs.py
+++ b/pylint/extensions/test/test_check_docs.py
@@ -249,7 +249,7 @@ class ParamDocCheckerTest(CheckerTestCase):
zarg (int): bla zarg
Returns:
- sum (float)
+ float: sum
'''
return xarg + yarg
""")