Skip to content

Commit 2ce02b4

Browse files
Federico Arizafariza
Federico Ariza
authored andcommitted
grammar/ortograph
1 parent 137df89 commit 2ce02b4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/matplotlib/backend_tools.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ def trigger(self, sender, event, data=None):
405405
class ToolEnableAllNavigation(ToolBase):
406406
"""Tool to enable all axes for toolmanager interaction"""
407407

408-
description = 'Enables all axes toolmanager'
408+
description = 'Enable all axes toolmanager'
409409
default_keymap = rcParams['keymap.all_axes']
410410

411411
def trigger(self, sender, event, data=None):
@@ -421,7 +421,7 @@ def trigger(self, sender, event, data=None):
421421
class ToolEnableNavigation(ToolBase):
422422
"""Tool to enable a specific axes for toolmanager interaction"""
423423

424-
description = 'Enables one axes toolmanager'
424+
description = 'Enable one axes toolmanager'
425425
default_keymap = (1, 2, 3, 4, 5, 6, 7, 8, 9)
426426

427427
def trigger(self, sender, event, data=None):
@@ -472,7 +472,7 @@ def _get_uniform_grid_state(ticks):
472472
class ToolGrid(_ToolGridBase):
473473
"""Tool to toggle the major grids of the figure"""
474474

475-
description = 'Toogle major grids'
475+
description = 'Toggle major grids'
476476
default_keymap = rcParams['keymap.grid']
477477

478478
def _get_next_grid_states(self, ax):
@@ -493,7 +493,7 @@ def _get_next_grid_states(self, ax):
493493
class ToolMinorGrid(_ToolGridBase):
494494
"""Tool to toggle the major and minor grids of the figure"""
495495

496-
description = 'Toogle major and minor grids'
496+
description = 'Toggle major and minor grids'
497497
default_keymap = rcParams['keymap.grid_minor']
498498

499499
def _get_next_grid_states(self, ax):
@@ -513,7 +513,7 @@ def _get_next_grid_states(self, ax):
513513
class ToolFullScreen(ToolToggleBase):
514514
"""Tool to toggle full screen"""
515515

516-
description = 'Toogle Fullscreen mode'
516+
description = 'Toggle fullscreen mode'
517517
default_keymap = rcParams['keymap.fullscreen']
518518

519519
def enable(self, event):
@@ -543,7 +543,7 @@ def disable(self, event):
543543
class ToolYScale(AxisScaleBase):
544544
"""Tool to toggle between linear and logarithmic scales on the Y axis"""
545545

546-
description = 'Toogle Scale Y axis'
546+
description = 'Toggle scale Y axis'
547547
default_keymap = rcParams['keymap.yscale']
548548

549549
def set_scale(self, ax, scale):
@@ -553,7 +553,7 @@ def set_scale(self, ax, scale):
553553
class ToolXScale(AxisScaleBase):
554554
"""Tool to toggle between linear and logarithmic scales on the X axis"""
555555

556-
description = 'Toogle Scale X axis'
556+
description = 'Toggle scale X axis'
557557
default_keymap = rcParams['keymap.xscale']
558558

559559
def set_scale(self, ax, scale):

0 commit comments

Comments
 (0)