Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 19dd0eb

Browse files
committed
DOC: Use consistent capitalization for See Also section.
1 parent 0b18183 commit 19dd0eb

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def set_xlabel(self, xlabel, fontdict=None, labelpad=None, *,
209209
**kwargs : `.Text` properties
210210
`.Text` properties control the appearance of the label.
211211
212-
See also
212+
See Also
213213
--------
214214
text : Documents the properties supported by `.Text`.
215215
"""
@@ -262,7 +262,7 @@ def set_ylabel(self, ylabel, fontdict=None, labelpad=None, *,
262262
**kwargs : `.Text` properties
263263
`.Text` properties control the appearance of the label.
264264
265-
See also
265+
See Also
266266
--------
267267
text : Documents the properties supported by `.Text`.
268268
"""
@@ -794,7 +794,7 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
794794
795795
%(_Line2D_docstr)s
796796
797-
See also
797+
See Also
798798
--------
799799
hlines : Add horizontal lines in data coordinates.
800800
axhspan : Add a horizontal span (rectangle) across the axis.
@@ -1103,7 +1103,7 @@ def hlines(self, y, xmin, xmax, colors='k', linestyles='solid',
11031103
----------------
11041104
**kwargs : `~matplotlib.collections.LineCollection` properties.
11051105
1106-
See also
1106+
See Also
11071107
--------
11081108
vlines : vertical lines
11091109
axhline: horizontal line across the axes
@@ -1181,7 +1181,7 @@ def vlines(self, x, ymin, ymax, colors='k', linestyles='solid',
11811181
----------------
11821182
**kwargs : `~matplotlib.collections.LineCollection` properties.
11831183
1184-
See also
1184+
See Also
11851185
--------
11861186
hlines : horizontal lines
11871187
axvline: vertical line across the axes
@@ -2309,7 +2309,7 @@ def bar(self, x, height, width=0.8, bottom=None, *, align="center",
23092309
*This is for internal use only.* Please use `barh` for
23102310
horizontal bar plots. Default: 'vertical'.
23112311
2312-
See also
2312+
See Also
23132313
--------
23142314
barh: Plot a horizontal bar plot.
23152315
@@ -2578,7 +2578,7 @@ def barh(self, y, width, height=0.8, left=None, *, align="center",
25782578
log : bool, default: False
25792579
If ``True``, set the x-axis to be log scale.
25802580
2581-
See also
2581+
See Also
25822582
--------
25832583
bar: Plot a vertical bar plot.
25842584
@@ -5440,7 +5440,7 @@ def imshow(self, X, cmap=None, norm=None, aspect=None,
54405440
These parameters are passed on to the constructor of the
54415441
`.AxesImage` artist.
54425442
5443-
See also
5443+
See Also
54445444
--------
54455445
matshow : Plot a matrix or an array as an image.
54465446
@@ -6471,7 +6471,7 @@ def hist(self, x, bins=None, range=None, density=False, weights=None,
64716471
**kwargs
64726472
`~matplotlib.patches.Patch` properties
64736473
6474-
See also
6474+
See Also
64756475
--------
64766476
hist2d : 2D histograms
64776477
@@ -6832,7 +6832,7 @@ def hist2d(self, x, y, bins=10, range=None, density=False, weights=None,
68326832
`~.Axes.pcolormesh` method and `~matplotlib.collections.QuadMesh`
68336833
constructor.
68346834
6835-
See also
6835+
See Also
68366836
--------
68376837
hist : 1D histogram plotting
68386838

lib/matplotlib/axes/_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1673,7 +1673,7 @@ def axis(self, *args, emit=True, **kwargs):
16731673
xmin, xmax, ymin, ymax : float
16741674
The axis limits.
16751675
1676-
See also
1676+
See Also
16771677
--------
16781678
matplotlib.axes.Axes.set_xlim
16791679
matplotlib.axes.Axes.set_ylim

lib/matplotlib/axes/_secondary_axes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def set_xlabel(self, xlabel, fontdict=None, labelpad=None, **kwargs):
294294
**kwargs : `.Text` properties
295295
`.Text` properties control the appearance of the label.
296296
297-
See also
297+
See Also
298298
--------
299299
text : Documents the properties supported by `.Text`.
300300
"""
@@ -319,7 +319,7 @@ def set_ylabel(self, ylabel, fontdict=None, labelpad=None, **kwargs):
319319
**kwargs : `.Text` properties
320320
`.Text` properties control the appearance of the label.
321321
322-
See also
322+
See Also
323323
--------
324324
text : Documents the properties supported by `.Text`.
325325
"""

0 commit comments

Comments
 (0)