@@ -2995,8 +2995,8 @@ def set_xticks(self, ticks, minor=False):
2995
2995
2996
2996
Parameters
2997
2997
----------
2998
- ticks : sequence
2999
- Sequence of ticks
2998
+ ticks : list
2999
+ List of x-axis tick locations
3000
3000
3001
3001
minor : bool, optional
3002
3002
If ``False`` sets major ticks, if ``True`` sets minor ticks.
@@ -3013,7 +3013,7 @@ def get_xmajorticklabels(self):
3013
3013
Returns
3014
3014
-------
3015
3015
labels : list
3016
- List of :class:`~matplotlib.text.Text` instancess
3016
+ List of :class:`~matplotlib.text.Text` instances
3017
3017
"""
3018
3018
return cbook .silent_list ('Text xticklabel' ,
3019
3019
self .xaxis .get_majorticklabels ())
@@ -3317,7 +3317,7 @@ def set_yticks(self, ticks, minor=False):
3317
3317
Parameters
3318
3318
----------
3319
3319
ticks : sequence
3320
- Sequence of ticks
3320
+ List of y-axis tick locations
3321
3321
3322
3322
minor : bool, optional
3323
3323
If ``False`` sets major ticks, if ``True`` sets minor ticks.
@@ -3333,7 +3333,7 @@ def get_ymajorticklabels(self):
3333
3333
Returns
3334
3334
-------
3335
3335
labels : list
3336
- List of :class:`~matplotlib.text.Text` instancess
3336
+ List of :class:`~matplotlib.text.Text` instances
3337
3337
"""
3338
3338
return cbook .silent_list ('Text yticklabel' ,
3339
3339
self .yaxis .get_majorticklabels ())
@@ -3345,7 +3345,7 @@ def get_yminorticklabels(self):
3345
3345
Returns
3346
3346
-------
3347
3347
labels : list
3348
- List of :class:`~matplotlib.text.Text` instancess
3348
+ List of :class:`~matplotlib.text.Text` instances
3349
3349
"""
3350
3350
return cbook .silent_list ('Text yticklabel' ,
3351
3351
self .yaxis .get_minorticklabels ())
0 commit comments