Skip to content

Commit 0021083

Browse files
authored
Merge pull request jakevdp#40 from fuglede/patch-2
Fix a small typo
2 parents cb71d4b + b4ca493 commit 0021083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

notebooks/03.12-Performance-Eval-and-Query.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ mask = tmp1 & tmp2
6969

7070
In other words, *every intermediate step is explicitly allocated in memory*. If the ``x`` and ``y`` arrays are very large, this can lead to significant memory and computational overhead.
7171
The Numexpr library gives you the ability to compute this type of compound expression element by element, without the need to allocate full intermediate arrays.
72-
The [Numexpr documentation](https://github.com/pydata/numexpr) has more details, but for the time being it is sufficient to say that the library accepts a *string* giving the NumPy-style expression you'd like to comute:
72+
The [Numexpr documentation](https://github.com/pydata/numexpr) has more details, but for the time being it is sufficient to say that the library accepts a *string* giving the NumPy-style expression you'd like to compute:
7373

7474
```python
7575
import numexpr

0 commit comments

Comments
 (0)