summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/c-api/coremath.rst8
-rw-r--r--doc/source/reference/routines.other.rst9
2 files changed, 12 insertions, 5 deletions
diff --git a/doc/source/reference/c-api/coremath.rst b/doc/source/reference/c-api/coremath.rst
index cec83b150..e129fdd77 100644
--- a/doc/source/reference/c-api/coremath.rst
+++ b/doc/source/reference/c-api/coremath.rst
@@ -49,24 +49,24 @@ Floating point classification
.. c:macro:: npy_isnan(x)
This is a macro, and is equivalent to C99 isnan: works for single, double
- and extended precision, and return a non 0 value is x is a NaN.
+ and extended precision, and return a non 0 value if x is a NaN.
.. c:macro:: npy_isfinite(x)
This is a macro, and is equivalent to C99 isfinite: works for single,
- double and extended precision, and return a non 0 value is x is neither a
+ double and extended precision, and return a non 0 value if x is neither a
NaN nor an infinity.
.. c:macro:: npy_isinf(x)
This is a macro, and is equivalent to C99 isinf: works for single, double
- and extended precision, and return a non 0 value is x is infinite (positive
+ and extended precision, and return a non 0 value if x is infinite (positive
and negative).
.. c:macro:: npy_signbit(x)
This is a macro, and is equivalent to C99 signbit: works for single, double
- and extended precision, and return a non 0 value is x has the signbit set
+ and extended precision, and return a non 0 value if x has the signbit set
(that is the number is negative).
.. c:macro:: npy_copysign(x, y)
diff --git a/doc/source/reference/routines.other.rst b/doc/source/reference/routines.other.rst
index aefd680bb..339857409 100644
--- a/doc/source/reference/routines.other.rst
+++ b/doc/source/reference/routines.other.rst
@@ -55,4 +55,11 @@ Matlab-like Functions
:toctree: generated/
who
- disp \ No newline at end of file
+ disp
+
+Exceptions
+----------
+.. autosummary::
+ :toctree: generated/
+
+ AxisError