Skip to content

Commit 178ba28

Browse files
committed
open -> access
1 parent 51be77c commit 178ba28

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

01-numpy.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ specialized tools built up from these basic units live in [libraries](reference.
2222
that can be called upon when needed.
2323

2424
In order to load our inflammation data,
25-
we need to open ([import](reference.html#import) in Python terminology) a library called [NumPy](http://docs.scipy.org/doc/numpy/ "NumPy Documentation").
25+
we need to access ([import](reference.html#import) in Python terminology)
26+
a library called [NumPy](http://docs.scipy.org/doc/numpy/ "NumPy Documentation").
2627
In general you should use this library if you want to do fancy things with numbers,
2728
especially if you have matrices or arrays.
28-
We can import NumPy using:
29+
We can import NumPy using:
2930

3031
~~~ {.python}
3132
import numpy

0 commit comments

Comments
 (0)