diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2018-09-13 23:48:48 -0700 |
---|---|---|
committer | Eric Wieser <wieser.eric@gmail.com> | 2018-09-13 23:48:48 -0700 |
commit | 31b207eab697d30052ea47e0018e54f0a694435f (patch) | |
tree | a71a3015691a1e144c0b6295344848f73c4ce2af | |
parent | ed124950726b469a1cf75835940c215dfb20c69f (diff) | |
download | numpy-31b207eab697d30052ea47e0018e54f0a694435f.tar.gz |
STY: string trailing spaces
-rw-r--r-- | doc/source/reference/c-api.types-and-structures.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/c-api.types-and-structures.rst b/doc/source/reference/c-api.types-and-structures.rst index dcebd1ede..e078149cc 100644 --- a/doc/source/reference/c-api.types-and-structures.rst +++ b/doc/source/reference/c-api.types-and-structures.rst @@ -133,9 +133,9 @@ PyArray_Type is related to this array. There are two use cases: 1) If this array does not own its own memory, then base points to the Python object that owns it (perhaps another array object), 2) If this array has - the (deprecated) :c:data:`NPY_ARRAY_UPDATEIFCOPY` or + the (deprecated) :c:data:`NPY_ARRAY_UPDATEIFCOPY` or :c:data:NPY_ARRAY_WRITEBACKIFCOPY`: flag set, then this array is - a working copy of a "misbehaved" array. When + a working copy of a "misbehaved" array. When ``PyArray_ResolveWritebackIfCopy`` is called, the array pointed to by base will be updated with the contents of this array. |