@@ -403,7 +403,7 @@ def trigger(self, sender, event, data=None):
403
403
class ToolEnableAllNavigation (ToolBase ):
404
404
"""Tool to enable all axes for toolmanager interaction"""
405
405
406
- description = 'Enables all axes toolmanager'
406
+ description = 'Enable all axes toolmanager'
407
407
default_keymap = rcParams ['keymap.all_axes' ]
408
408
409
409
def trigger (self ,sender ,event ,data = None ):
@@ -419,7 +419,7 @@ def trigger(self, sender, event, data=None):
419
419
class ToolEnableNavigation (ToolBase ):
420
420
"""Tool to enable a specific axes for toolmanager interaction"""
421
421
422
- description = 'Enables one axes toolmanager'
422
+ description = 'Enable one axes toolmanager'
423
423
default_keymap = (1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9 )
424
424
425
425
def trigger (self ,sender ,event ,data = None ):
@@ -470,7 +470,7 @@ def _get_uniform_grid_state(ticks):
470
470
class ToolGrid (_ToolGridBase ):
471
471
"""Tool to toggle the major grids of the figure"""
472
472
473
- description = 'Toogle major grids'
473
+ description = 'Toggle major grids'
474
474
default_keymap = rcParams ['keymap.grid' ]
475
475
476
476
def _get_next_grid_states (self ,ax ):
@@ -491,7 +491,7 @@ def _get_next_grid_states(self, ax):
491
491
class ToolMinorGrid (_ToolGridBase ):
492
492
"""Tool to toggle the major and minor grids of the figure"""
493
493
494
- description = 'Toogle major and minor grids'
494
+ description = 'Toggle major and minor grids'
495
495
default_keymap = rcParams ['keymap.grid_minor' ]
496
496
497
497
def _get_next_grid_states (self ,ax ):
@@ -511,7 +511,7 @@ def _get_next_grid_states(self, ax):
511
511
class ToolFullScreen (ToolToggleBase ):
512
512
"""Tool to toggle full screen"""
513
513
514
- description = 'Toogle Fullscreen mode'
514
+ description = 'Toggle fullscreen mode'
515
515
default_keymap = rcParams ['keymap.fullscreen' ]
516
516
517
517
def enable (self ,event ):
@@ -541,7 +541,7 @@ def disable(self, event):
541
541
class ToolYScale (AxisScaleBase ):
542
542
"""Tool to toggle between linear and logarithmic scales on the Y axis"""
543
543
544
- description = 'Toogle Scale Y axis'
544
+ description = 'Toggle scale Y axis'
545
545
default_keymap = rcParams ['keymap.yscale' ]
546
546
547
547
def set_scale (self ,ax ,scale ):
@@ -551,7 +551,7 @@ def set_scale(self, ax, scale):
551
551
class ToolXScale (AxisScaleBase ):
552
552
"""Tool to toggle between linear and logarithmic scales on the X axis"""
553
553
554
- description = 'Toogle Scale X axis'
554
+ description = 'Toggle scale X axis'
555
555
default_keymap = rcParams ['keymap.xscale' ]
556
556
557
557
def set_scale (self ,ax ,scale ):