From 5ad43199debdd2d33eab35190c8c3a9d4f60ca42 Mon Sep 17 00:00:00 2001 From: Sidney Pham Date: Fri, 7 Oct 2016 15:53:05 +1100 Subject: [PATCH] Fixed example docstring --- docs/writing/documentation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/documentation.rst b/docs/writing/documentation.rst index bd59437..7e10ab4 100644 --- a/docs/writing/documentation.rst +++ b/docs/writing/documentation.rst @@ -104,7 +104,7 @@ In Python, *docstrings* describe modules, classes, and functions: .. code-block:: python def square_and_rooter(x): - """Returns the square root of self times self.""" + """Return the square root of self times self.""" ... In general, follow the comment section of :pep:`8#comments` (the "Python Style