Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 5 additions & 7 deletions lib/matplotlib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1602,14 +1602,12 @@ def _replacer(data, key):

_DATA_DOC_APPENDIX = """

Notes
-----
.. note::
In addition to the above described arguments, this function can take a
**data** keyword argument. If such a **data** argument is given, the
following arguments are replaced by **data[<arg>]**:

In addition to the above described arguments, this function can take a
**data** keyword argument. If such a **data** argument is given, the
following arguments are replaced by **data[<arg>]**:

{replaced}
{replaced}
"""


Expand Down
3 changes: 2 additions & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4676,7 +4676,8 @@ def barbs(self, *args, **kw):
positional_parameter_names=["x", "y", "c"])
@docstring.dedent_interpd
def fill(self, *args, **kwargs):
"""Plot filled polygons.
"""
Plot filled polygons.

Parameters
----------
Expand Down