@@ -3062,28 +3062,27 @@ def set_xticklabels(self, labels, fontdict=None, minor=False, **kwargs):
30623062 Parameters
30633063 ----------
30643064 labels : list of str
3065- list of string labels
3065+ List of string labels.
30663066
30673067 fontdict : dict, optional
3068- A dictionary controlling the appearance of the ticklabels,
3069- the default `fontdict` is:
3068+ A dictionary controlling the appearance of the ticklabels.
3069+ The default `fontdict` is: :
30703070
30713071 {'fontsize': rcParams['axes.titlesize'],
3072- 'fontweight' : rcParams['axes.titleweight'],
3072+ 'fontweight': rcParams['axes.titleweight'],
30733073 'verticalalignment': 'baseline',
30743074 'horizontalalignment': loc}
30753075
30763076 minor : bool, optional
3077- If True select the minor ticklabels,
3078- else select the minor ticklabels
3077+ Whether to set the minor ticklabels rather than the major ones.
30793078
30803079 Returns
30813080 -------
3082- A list of `~matplotlib.text. Text` instances
3081+ A list of `~. Text` instances.
30833082
30843083 Other Parameters
30853084 -----------------
3086- **kwargs : `~matplotlib.text .Text` properties.
3085+ **kwargs : `~.Text` properties.
30873086 """
30883087 if fontdict is not None :
30893088 kwargs .update (fontdict )
@@ -3385,25 +3384,24 @@ def set_yticklabels(self, labels, fontdict=None, minor=False, **kwargs):
33853384 list of string labels
33863385
33873386 fontdict : dict, optional
3388- A dictionary controlling the appearance of the ticklabels,
3389- the default `fontdict` is::
3387+ A dictionary controlling the appearance of the ticklabels.
3388+ The default `fontdict` is::
33903389
33913390 {'fontsize': rcParams['axes.titlesize'],
3392- 'fontweight' : rcParams['axes.titleweight'],
3391+ 'fontweight': rcParams['axes.titleweight'],
33933392 'verticalalignment': 'baseline',
33943393 'horizontalalignment': loc}
33953394
33963395 minor : bool, optional
3397- If True select the minor ticklabels,
3398- else select the minor ticklabels
3396+ Whether to set the minor ticklabels rather than the major ones.
33993397
34003398 Returns
34013399 -------
3402- A list of `~matplotlib.text .Text` instances.
3400+ A list of `~.Text` instances.
34033401
34043402 Other Parameters
34053403 ----------------
3406- **kwargs : `~matplotlib.text .Text` properties.
3404+ **kwargs : `~.Text` properties.
34073405 """
34083406 if fontdict is not None :
34093407 kwargs .update (fontdict )
0 commit comments