diff options
author | Joseph Fox-Rabinovitz <joseph.r.fox-rabinovitz@nasa.gov> | 2016-02-23 19:23:47 -0500 |
---|---|---|
committer | Joseph Fox-Rabinovitz <joseph.r.fox-rabinovitz@nasa.gov> | 2016-03-14 10:13:59 -0400 |
commit | 7a4ff44b056eb8f8a53fbc196ef53666523bfca3 (patch) | |
tree | e510f887e6205e47fe52cc54a9ad3b00fd8c85df /doc/source/reference | |
parent | c9aca387e918888e3c259ff323bbbacffd6c5d87 (diff) | |
download | numpy-7a4ff44b056eb8f8a53fbc196ef53666523bfca3.tar.gz |
DOC: Updates to documentation from perusing it in detail.
[ci skip]
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/c-api.array.rst | 2 | ||||
-rw-r--r-- | doc/source/reference/c-api.types-and-structures.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/c-api.array.rst b/doc/source/reference/c-api.array.rst index aba5f9caa..049c7b537 100644 --- a/doc/source/reference/c-api.array.rst +++ b/doc/source/reference/c-api.array.rst @@ -421,7 +421,7 @@ From other objects Force a cast to the output type even if it cannot be done safely. Without this flag, a data cast will occur only if it - can be done safely, otherwise an error is reaised. + can be done safely, otherwise an error is raised. .. c:var:: NPY_ARRAY_UPDATEIFCOPY diff --git a/doc/source/reference/c-api.types-and-structures.rst b/doc/source/reference/c-api.types-and-structures.rst index c5165fef3..38f1acb60 100644 --- a/doc/source/reference/c-api.types-and-structures.rst +++ b/doc/source/reference/c-api.types-and-structures.rst @@ -871,8 +871,8 @@ PyArrayIter_Type .. c:member:: npy_intp *PyArrayIterObject.backstrides How many bytes needed to jump from the end of a dimension back - to its beginning. Note that *backstrides* [k]= *strides* [k]*d - *ims_m1* [k], but it is stored here as an optimization. + to its beginning. Note that `backstrides`[k]= `strides`[k] * + `dims_m1`[k], but it is stored here as an optimization. .. c:member:: npy_intp *PyArrayIterObject.factors |