diff options
-rw-r--r-- | doc/neps/nep-0031-uarray.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/neps/nep-0031-uarray.rst b/doc/neps/nep-0031-uarray.rst index 2cbfeeb70..7712e1b9f 100644 --- a/doc/neps/nep-0031-uarray.rst +++ b/doc/neps/nep-0031-uarray.rst @@ -96,8 +96,7 @@ And a library that implements a NumPy-like API will use it in the following mann # Code here # Must return NotImplemented for unsupported array types - # Assuming your arrays are mutable, this also implements - # zeros and ones. + # Provides a default implementation for ones and zeros. @implements(np.empty) def empty(shape, dtype=float, order='C'): # Code here |