@@ -537,10 +537,10 @@ def indicate_inset(self, bounds, inset_ax=None, *, transform=None,
537537 Returns
538538 -------
539539
540- rectangle_patch: `.Patches.Rectangle`
540+ rectangle_patch : `.Patches.Rectangle`
541541 Rectangle artist.
542542
543- connector_lines: 4-tuple of `.Patches.ConnectionPatch`
543+ connector_lines : 4-tuple of `.Patches.ConnectionPatch`
544544 One for each of four connector lines. Two are set with visibility
545545 to *False*, but the user can set the visibility to True if the
546546 automatic choice is not deemed correct.
@@ -616,10 +616,10 @@ def indicate_inset_zoom(self, inset_ax, **kwargs):
616616 Returns
617617 -------
618618
619- rectangle_patch: `.Patches.Rectangle`
619+ rectangle_patch : `.Patches.Rectangle`
620620 Rectangle artist.
621621
622- connector_lines: 4-tuple of `.Patches.ConnectionPatch`
622+ connector_lines : 4-tuple of `.Patches.ConnectionPatch`
623623 One for each of four connector lines. Two are set with visibility
624624 to *False*, but the user can set the visibility to True if the
625625 automatic choice is not deemed correct.
@@ -753,7 +753,7 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
753753
754754 Other Parameters
755755 ----------------
756- **kwargs :
756+ **kwargs
757757 Valid kwargs are :class:`~matplotlib.lines.Line2D` properties,
758758 with the exception of 'transform':
759759
@@ -823,7 +823,7 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
823823
824824 Other Parameters
825825 ----------------
826- **kwargs :
826+ **kwargs
827827 Valid kwargs are :class:`~matplotlib.lines.Line2D` properties,
828828 with the exception of 'transform':
829829
@@ -2998,7 +2998,7 @@ def errorbar(self, x, y, yerr=None, xerr=None,
29982998
29992999 Other Parameters
30003000 ----------------
3001- **kwargs :
3001+ **kwargs
30023002 All other keyword arguments are passed on to the plot
30033003 command for the markers. For example, this code makes big red
30043004 squares with thick green edges::
@@ -5657,7 +5657,7 @@ def pcolor(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
56575657 Stroking the edges may be preferred if *alpha* is 1, but will
56585658 cause artifacts otherwise.
56595659
5660- **kwargs :
5660+ **kwargs
56615661 Additionally, the following arguments are allowed. They are passed
56625662 along to the `~matplotlib.collections.PolyCollection` constructor:
56635663
@@ -6942,7 +6942,7 @@ def psd(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
69426942
69436943 Other Parameters
69446944 ----------------
6945- **kwargs :
6945+ **kwargs
69466946 Keyword arguments control the :class:`~matplotlib.lines.Line2D`
69476947 properties:
69486948
@@ -7067,7 +7067,7 @@ def csd(self, x, y, NFFT=None, Fs=None, Fc=None, detrend=None,
70677067
70687068 Other Parameters
70697069 ----------------
7070- **kwargs :
7070+ **kwargs
70717071 Keyword arguments control the :class:`~matplotlib.lines.Line2D`
70727072 properties:
70737073
@@ -7165,7 +7165,7 @@ def magnitude_spectrum(self, x, Fs=None, Fc=None, window=None,
71657165
71667166 Other Parameters
71677167 ----------------
7168- **kwargs :
7168+ **kwargs
71697169 Keyword arguments control the :class:`~matplotlib.lines.Line2D`
71707170 properties:
71717171
@@ -7262,7 +7262,7 @@ def angle_spectrum(self, x, Fs=None, Fc=None, window=None,
72627262
72637263 Other Parameters
72647264 ----------------
7265- **kwargs :
7265+ **kwargs
72667266 Keyword arguments control the :class:`~matplotlib.lines.Line2D`
72677267 properties:
72687268
@@ -7344,7 +7344,7 @@ def phase_spectrum(self, x, Fs=None, Fc=None, window=None,
73447344
73457345 Other Parameters
73467346 ----------------
7347- **kwargs :
7347+ **kwargs
73487348 Keyword arguments control the :class:`~matplotlib.lines.Line2D`
73497349 properties:
73507350
@@ -7423,7 +7423,7 @@ def cohere(self, x, y, NFFT=256, Fs=2, Fc=0, detrend=mlab.detrend_none,
74237423
74247424 Other Parameters
74257425 ----------------
7426- **kwargs :
7426+ **kwargs
74277427 Keyword arguments control the :class:`~matplotlib.lines.Line2D`
74287428 properties:
74297429
@@ -7505,7 +7505,7 @@ def specgram(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
75057505 when a signal is acquired and then filtered and downsampled to
75067506 baseband.
75077507
7508- cmap :
7508+ cmap
75097509 A :class:`matplotlib.colors.Colormap` instance; if *None*, use
75107510 default determined by rc
75117511
@@ -7515,7 +7515,7 @@ def specgram(self, x, NFFT=None, Fs=None, Fc=None, detrend=None,
75157515 right border of the last bin. Note that for *noverlap>0* the width
75167516 of the bins is smaller than those of the segments.
75177517
7518- **kwargs :
7518+ **kwargs
75197519 Additional kwargs are passed on to imshow which makes the
75207520 specgram image.
75217521
0 commit comments