Skip to content

Commit

Permalink
minor typo: axes instead of axis
Browse files Browse the repository at this point in the history
  • Loading branch information
sushobhana committed Aug 26, 2018
1 parent 92bc2fb commit 1567ac5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion regions/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def plot(self, origin=(0, 0), ax=None, **kwargs):
Returns
-------
ax: `~matplotlib.axes`
Axis on which the patch is added.
Axes on which the patch is added.
"""
import matplotlib.pyplot as plt

Expand Down
2 changes: 1 addition & 1 deletion regions/shapes/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def plot(self, origin=(0, 0), ax=None, **kwargs):
The ``(x, y)`` pixel position of the origin of the displayed image.
Default is (0, 0).
ax: `~matplotlib.axes`, optional
Axis
Axes on which the point is added
kwargs: dict
All keywords that a ``Line2D`` object accepts
"""
Expand Down
2 changes: 1 addition & 1 deletion regions/shapes/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def plot(self, origin=(0, 0), ax=None, **kwargs):
Returns
-------
ax : `~matplotlib.axes`
The axis with the patch.
The axes with the text.
"""
import matplotlib.pyplot as plt
from matplotlib.text import Text
Expand Down

0 comments on commit 1567ac5

Please sign in to comment.