8000 kwargs to **kwargs in docstrings · patniharshit/matplotlib@5952588 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5952588

Browse files
committed
kwargs to **kwargs in docstrings
1 parent 7da08bc commit 5952588

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def set_title(self, label, fontdict=None, loc="center", **kwargs):
168168
169169
Other Parameters
170170
----------------
171-
kwargs : text properties
171+
**kwargs : `~matplotlib.text.Text` properties
172172
Other keyword arguments are text properties, see
173173
:class:`~matplotlib.text.Text` for a list of valid text
174174
properties.
@@ -212,7 +212,7 @@ def set_xlabel(self, xlabel, fontdict=None, labelpad=None, **kwargs):
212212
213213
Other Parameters
214214
----------------
215-
kwargs : `~matplotlib.text.Text` properties
215+
**kwargs : `~matplotlib.text.Text` properties
216216
217217
See also
218218
--------
@@ -243,7 +243,7 @@ def set_ylabel(self, ylabel, fontdict=None, labelpad=None, **kwargs):
243243
244244
Other Parameters
245245
----------------
246-
kwargs : `~matplotlib.text.Text` properties
246+
**kwargs : `~matplotlib.text.Text` properties
247247
248248
See also
249249
--------
@@ -590,7 +590,7 @@ def text(self, x, y, s, fontdict=None, withdash=False, **kwargs):
590590
591591
Other Parameters
592592
----------------
593-
kwargs : `~matplotlib.text.Text` properties.
593+
**kwargs : `~matplotlib.text.Text` properties.
594594
Other miscellaneous text parameters.
595595
596596
Examples
@@ -829,7 +829,7 @@ def axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs):
829829
830830
Other Parameters
831831
----------------
832-
kwargs : `~matplotlib.patches.Polygon` properties.
832+
**kwargs : `~matplotlib.patches.Polygon` properties.
833833
834834
%(Polygon)s
835835
@@ -947,7 +947,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
947947
948948
Other Parameters
949949
----------------
950-
kwargs : `~matplotlib.collections.LineCollection` properties.
950+
**kwargs : `~matplotlib.collections.LineCollection` properties.
951951
952952
See also
953953
--------
@@ -1025,7 +1025,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
10251025
10261026
Other Parameters
10271027
----------------
1028-
kwargs : `~matplotlib.collections.LineCollection` properties.
1028+
**kwargs : `~matplotlib.collections.LineCollection` properties.
10291029
10301030
See also
10311031
--------
@@ -2736,7 +2736,8 @@ def errorbar(self, x, y, yerr=None, xerr=None,
27362736
27372737
Other Parameters
27382738
----------------
2739-
**kwargs : All other keyword arguments are passed on to the plot
2739+
**kwargs :
2740+
All other keyword arguments are passed on to the plot
27402741
command for the markers. For example, this code makes big red
27412742
squares with thick green edges::
27422743
@@ -3840,7 +3841,7 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
38403841
38413842
Other Parameters
38423843
----------------
3843-
kwargs : `~matplotlib.collections.Collection` properties
3844+
**kwargs : `~matplotlib.collections.Collection` properties
38443845
38453846
See Also
38463847
--------
@@ -4617,7 +4618,7 @@ def fill(self, *args, **kwargs):
46174618
46184619
Other Parameters
46194620
----------------
4620-
kwargs : :class:`~matplotlib.patches.Polygon` properties
4621+
**kwargs : :class:`~matplotlib.patches.Polygon` properties
46214622
46224623
Notes
46234624
-----
@@ -5063,7 +5064,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
50635064
50645065
Other Parameters
50655066
----------------
5066-
kwargs : `~matplotlib.artist.Artist` properties.
5067+
**kwargs : `~matplotlib.artist.Artist` properties.
50675068
50685069
See also
50695070
--------
@@ -5998,7 +5999,7 @@ def hist(self, x, bins=None, range=None, normed=False, weights=None,
59985999
59996000
Other Parameters
60006001
----------------
6001-
kwargs : `~matplotlib.patches.Patch` properties
6002+
**kwargs : `~matplotlib.patches.Patch` properties
60026003
60036004
See also
60046005
--------
@@ -7263,7 +7264,7 @@ def matshow(self, Z, **kwargs):
72637264
72647265
Other Parameters
72657266
----------------
7266-
kwargs : `~matplotlib.axes.Axes.imshow` arguments
7267+
**kwargs : `~matplotlib.axes.Axes.imshow` arguments
72677268
Sets `origin` to 'upper', 'interpolation' to 'nearest' and
72687269
'aspect' to equal.
72697270

0 commit comments

Comments
 (0)
0