Skip to content

Commit

Permalink
Respond to review.
Browse files Browse the repository at this point in the history
Fix up a "numpy" that was missed in the docs.
  • Loading branch information
stuartarchibald committed Jun 21, 2022
1 parent 75891a0 commit 146e72d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/user/cfunc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ For example::
tmp = 0
for i in range(n):
tmp += base[i].i1 * base[i].f2 / base[i].d3
tmp += base[i].af4.sum() # nested arrays are like normal numpy array
tmp += base[i].af4.sum() # nested arrays are like normal NumPy arrays
return tmp


Expand Down

0 comments on commit 146e72d

Please sign in to comment.