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

Skip to content

Help tool #9022

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
grammar/ortograph
  • Loading branch information
Federico Ariza authored and fariza committed Apr 12, 2018
commit 2ce02b4c95efb73ec6f8cac1c5863a1a30fcbdce
14 changes: 7 additions & 7 deletions lib/matplotlib/backend_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def trigger(self, sender, event, data=None):
class ToolEnableAllNavigation(ToolBase):
"""Tool to enable all axes for toolmanager interaction"""

description = 'Enables all axes toolmanager'
description = 'Enable all axes toolmanager'
default_keymap = rcParams['keymap.all_axes']

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

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

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

description = 'Toogle major grids'
description = 'Toggle major grids'
default_keymap = rcParams['keymap.grid']

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

description = 'Toogle major and minor grids'
description = 'Toggle major and minor grids'
default_keymap = rcParams['keymap.grid_minor']

def _get_next_grid_states(self, ax):
Expand All @@ -513,7 +513,7 @@ def _get_next_grid_states(self, ax):
class ToolFullScreen(ToolToggleBase):
"""Tool to toggle full screen"""

description = 'Toogle Fullscreen mode'
description = 'Toggle fullscreen mode'
default_keymap = rcParams['keymap.fullscreen']

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

description = 'Toogle Scale Y axis'
description = 'Toggle scale Y axis'
default_keymap = rcParams['keymap.yscale']

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

description = 'Toogle Scale X axis'
description = 'Toggle scale X axis'
default_keymap = rcParams['keymap.xscale']

def set_scale(self, ax, scale):
Expand Down