diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2020-05-17 15:30:00 +0800 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2020-05-17 15:32:24 +0800 |
commit | 0a2893149e88e5c5bb69a29f78a4ad262a08cd29 (patch) | |
tree | ac015c57e9717e45d26594e8eb451cc9c0bdcf1e /doc/neps | |
parent | 50ce0fce70cac779919d97578381a9d762f42594 (diff) | |
download | numpy-0a2893149e88e5c5bb69a29f78a4ad262a08cd29.tar.gz |
DOC: Fix typos and cosmetic issues
Diffstat (limited to 'doc/neps')
-rw-r--r-- | doc/neps/nep-0012-missing-data.rst | 2 | ||||
-rw-r--r-- | doc/neps/nep-0021-advanced-indexing.rst | 2 | ||||
-rw-r--r-- | doc/neps/nep-0028-website-redesign.rst | 2 | ||||
-rw-r--r-- | doc/neps/nep-0041-improved-dtype-support.rst | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/neps/nep-0012-missing-data.rst b/doc/neps/nep-0012-missing-data.rst index f59cf394f..f7026b4be 100644 --- a/doc/neps/nep-0012-missing-data.rst +++ b/doc/neps/nep-0012-missing-data.rst @@ -926,7 +926,7 @@ to access the array elements. This python indexing still goes through the Python API, so the NA handling and error checking in numpy still can work like normal and fail if the inputs have NAs which cannot fit in the output array. In this case it fails when trying to convert the NA into an integer -to set in in the output. +to set in the output. The next version of the code introduces more efficient indexing. This operates based on Python's buffer protocol. This causes Cython to call diff --git a/doc/neps/nep-0021-advanced-indexing.rst b/doc/neps/nep-0021-advanced-indexing.rst index 8e525b0cb..0d20d680f 100644 --- a/doc/neps/nep-0021-advanced-indexing.rst +++ b/doc/neps/nep-0021-advanced-indexing.rst @@ -48,7 +48,7 @@ NumPy arrays currently support a flexible range of indexing operations: For clarity, we will refer to these existing rules as "legacy indexing". This is only a high-level summary; for more details, see NumPy's documentation -and and `Examples` below. +and `Examples` below. Outer indexing ~~~~~~~~~~~~~~ diff --git a/doc/neps/nep-0028-website-redesign.rst b/doc/neps/nep-0028-website-redesign.rst index 022a1fdbb..68f25ad4d 100644 --- a/doc/neps/nep-0028-website-redesign.rst +++ b/doc/neps/nep-0028-website-redesign.rst @@ -153,7 +153,7 @@ significant drain on the time of maintainers. 2. *Github Pages.* Github Pages also has a 100GB bandwidth limit, and is unclear if additional bandwidth can be purchased. It is also unclear where sites are deployed, and should be assumed sites aren't deployed globally. Github Pages has an easy to - use CI & DNS, similar to to Netlify. HTTPS is supported. + use CI & DNS, similar to Netlify. HTTPS is supported. 3. *Cloudflare.* An excellent option, additional CI is likely needed for the same ease of deployment. diff --git a/doc/neps/nep-0041-improved-dtype-support.rst b/doc/neps/nep-0041-improved-dtype-support.rst index 294f52746..56ff5eac6 100644 --- a/doc/neps/nep-0041-improved-dtype-support.rst +++ b/doc/neps/nep-0041-improved-dtype-support.rst @@ -392,7 +392,7 @@ numerical dtypes since there is no "universal" output type:: In fact ``np.result_type(meters, seconds)`` must error without context of the operation being done. This example highlights how the specific ufunc loop -(loop with known, specific DTypes as inputs), has to be able to to make +(loop with known, specific DTypes as inputs), has to be able to make certain decisions before the actual calculation can start. |