Skip to content

Commit ec378be

Browse files
committed
Fix typo in advanced numpy lesson
1 parent 267b0fd commit ec378be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/numpy-advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Copy versus view
340340
----------------
341341

342342
Whenever NumPy constructs a new array by modifying the :attr:`~numpy.ndarray.strides` instead of
343-
copying data, we way it created a "view". This also happens when we select only
343+
copying data, we create a "view". This also happens when we select only
344344
a portion of an existing matrix. Whenever a view is created, the
345345
:class:`numpy.ndarray` object will have a reference to the original array in
346346
its :attr:`~numpy.ndarray.base` attribute::

0 commit comments

Comments
 (0)