Skip to content

Commit

Permalink
Fix code snippet right before conclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
gallyamb authored Jan 11, 2017
1 parent d73ce5a commit c2bab04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 03-anatomy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ impact the performance like demonstrated on the example below:
100 loops, best of 3: 3.47 ms per loop
>>> timeit("X += 2*Y", globals())
100 loops, best of 3: 2.79 ms per loop
>>> np.add(X, Y, out=X), np.add(X, Y, out=X),
>>> timeit("np.add(X, Y, out=X); np.add(X, Y, out=X)", globals())
1000 loops, best of 3: 1.57 ms per loop
Expand Down

0 comments on commit c2bab04

Please sign in to comment.