Skip to content

Commit 5cc2d1f

Browse files
authored
Merge pull request jakevdp#32 from jackboot7/patch-1
Fixing typo in Fixed-Type Arrays in Python section
2 parents f1d35d3 + 2e231c5 commit 5cc2d1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/02.01-Understanding-Data-Types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ A
170170
Here ``'i'`` is a type code indicating the contents are integers.
171171

172172
Much more useful, however, is the ``ndarray`` object of the NumPy package.
173-
While Python's ``array`` obnject provides efficient storage of array-based data, NumPy adds to this efficient *operations* on that data.
173+
While Python's ``array`` object provides efficient storage of array-based data, NumPy adds to this efficient *operations* on that data.
174174
We will explore these operations in later sections; here we'll demonstrate several ways of creating a NumPy array.
175175

176176
We'll start with the standard NumPy import, under the alias ``np``:

0 commit comments

Comments
 (0)