summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/format.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/format.rst b/doc/format.rst
index 070bf98..d7971ce 100644
--- a/doc/format.rst
+++ b/doc/format.rst
@@ -335,6 +335,9 @@ The sections of a function's docstring are:
code, possibly including a discussion of the algorithm. This
section may include mathematical equations, written in
`LaTeX <https://www.latex-project.org/>`_ format::
+
+ Notes
+ -----
The FFT is a fast implementation of the discrete Fourier transform:
@@ -419,6 +422,8 @@ The sections of a function's docstring are:
blank lines. Comments explaining the examples should have blank
lines both above and below them::
+ Examples
+ --------
>>> np.add(1, 2)
3