Skip to content

Commit f59884c

Browse files
committed
FIX typos in imshow_extent.py
1 parent bf9ae97 commit f59884c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorials/intermediate/imshow_extent.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
:meth:`~.Axes.imshow` allows you to render an image (either a 2D array
66
which will be color-mapped (based on *norm* and *cmap*) or a 3D RGB(A)
7-
array which will be used as-is) to a rectangular region in dataspace.
7+
array which will be used as-is) to a rectangular region in data space.
88
The orientation of the image in the final rendering is controlled by
99
the *origin* and *extent* kwargs (and attributes on the resulting
1010
`~.AxesImage` instance) and the data limits of the axes.
@@ -176,7 +176,7 @@ def generate_imshow_demo_grid(extents, xlim=None, ylim=None):
176176
# vertical, the second index runs along the horizontal.
177177
# The pixel centers are at integer positions ranging from 0 to ``N' = N - 1``
178178
# horizontally and from 0 to ``M' = M - 1`` vertically.
179-
# *origin* determines how to the data is filled in the bounding box.
179+
# *origin* determines how the data is filled in the bounding box.
180180
#
181181
# For ``origin='lower'``:
182182
#
@@ -244,7 +244,7 @@ def generate_imshow_demo_grid(extents, xlim=None, ylim=None):
244244
#
245245
# While we keep the extents as in the examples before, the coordinate (0, 0)
246246
# is now explicitly put at the bottom left and values increase to up and to
247-
# the right (from the viewer point of view).
247+
# the right (from the viewer's point of view).
248248
# We can see that:
249249
#
250250
# - The coordinate ``(left, bottom)`` anchors the image which then fills the

0 commit comments

Comments
 (0)