Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions doc/source/development/contributing_docstring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ The next example gives an idea of what a docstring looks like:
Parameters
----------
num1 : int
First number to add
First number to add.
num2 : int
Second number to add
Second number to add.

Returns
-------
int
The sum of `num1` and `num2`
The sum of `num1` and `num2`.

See Also
--------
subtract : Subtract one integer from another
subtract : Subtract one integer from another.

Examples
--------
Expand Down Expand Up @@ -998,4 +998,4 @@ mapping function names to docstrings. Wherever possible, we prefer using

See ``pandas.core.generic.NDFrame.fillna`` for an example template, and
``pandas.core.series.Series.fillna`` and ``pandas.core.generic.frame.fillna``
for the filled versions.
for the filled versions.