summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-01-22 19:57:48 -0800
committerMark Wiebe <mwwiebe@gmail.com>2011-01-22 19:57:48 -0800
commit87c4ec831bcf0f5da10bf53cc1c51c0ac5a5cfa4 (patch)
tree5587b460eb7ae23e988241ab730cc87526fa9928
parent0ad51c14a62ed03baf265815f6059aff49754e83 (diff)
downloadnumpy-87c4ec831bcf0f5da10bf53cc1c51c0ac5a5cfa4.tar.gz
NEP: Correct some spelling errors
-rw-r--r--doc/neps/deferred-ufunc-evaluation.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/neps/deferred-ufunc-evaluation.rst b/doc/neps/deferred-ufunc-evaluation.rst
index f16f41768..95633cab5 100644
--- a/doc/neps/deferred-ufunc-evaluation.rst
+++ b/doc/neps/deferred-ufunc-evaluation.rst
@@ -203,7 +203,7 @@ The Python API would be expanded as follows.
``numpy.deferredstate(state)``
A context manager for deferred state handling, similar to
- n``umpy.errstate``.
+ ``numpy.errstate``.
Error Handling
@@ -249,7 +249,7 @@ they might go wrong:
1. Make a temporary copy of 'arr' with UPDATEIFCOPY ('arr' becomes read only)
2. Use 'arr' in a deferred expression (deferred usage count becomes one,
NPY_DEFERRED_WASWRITEABLE is **not** set, since 'arr' is read only)
-3. Destroy the temporarry copy, causing 'arr' to become writeable
+3. Destroy the temporary copy, causing 'arr' to become writeable
4. Writing to 'arr' destroys the value of the deferred expression
To deal with this issue, we make these two states mutually exclusive.