diff options
author | mattip <matti.picus@gmail.com> | 2018-10-25 20:36:31 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2018-10-25 20:36:31 +0300 |
commit | d17edb39d43873d93a074fb9e3802e573a8b391a (patch) | |
tree | a3ea82dcc86c527ddd5d0dbe985967163271c67b /doc/source | |
parent | fc60b27257924ed7f3c140bed00c13a35b057dc8 (diff) | |
download | numpy-d17edb39d43873d93a074fb9e3802e573a8b391a.tar.gz |
DOC: fixes from review
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/dev/conduct/report_handling_manual.rst | 2 | ||||
-rw-r--r-- | doc/source/dev/index.rst | 1 | ||||
-rw-r--r-- | doc/source/reference/alignment.rst | 8 |
3 files changed, 7 insertions, 4 deletions
diff --git a/doc/source/dev/conduct/report_handling_manual.rst b/doc/source/dev/conduct/report_handling_manual.rst index 5f5e32f13..d39b615bb 100644 --- a/doc/source/dev/conduct/report_handling_manual.rst +++ b/doc/source/dev/conduct/report_handling_manual.rst @@ -1,3 +1,5 @@ +:orphan: + .. _CoC_reporting_manual: NumPy Code of Conduct - How to follow up on a report diff --git a/doc/source/dev/index.rst b/doc/source/dev/index.rst index 1390acb9d..9ce04cc1b 100644 --- a/doc/source/dev/index.rst +++ b/doc/source/dev/index.rst @@ -6,7 +6,6 @@ Contributing to NumPy :maxdepth: 3 conduct/code_of_conduct - conduct/report_handling_manual gitwash/index development_environment releasing diff --git a/doc/source/reference/alignment.rst b/doc/source/reference/alignment.rst index f067f0d03..c749972b4 100644 --- a/doc/source/reference/alignment.rst +++ b/doc/source/reference/alignment.rst @@ -1,8 +1,10 @@ .. _alignment: +Memory Alignment +================ Numpy Alignment Goals -===================== +--------------------- There are three use-cases related to memory alignment in numpy (as of 1.14): @@ -33,7 +35,7 @@ alignment of 4 and "uint" alignment of 8 (equal to the true alignment of ``uint64``). Variables in Numpy which control and describe alignment -======================================================= +------------------------------------------------------- There are 4 relevant uses of the word ``align`` used in numpy: @@ -60,7 +62,7 @@ There are 4 relevant uses of the word ``align`` used in numpy: an analagous way to how ``IsAligned`` checks for true-alignment. Consequences of alignment -========================= +------------------------- Here is how the variables above are used: |