diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-06-08 11:53:22 -0700 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2013-06-08 11:53:22 -0700 |
commit | 23a27572994e1c731605c6a78a1564014c2a62c8 (patch) | |
tree | 4dad16e113bfebe7cd879be5cba860fe1e7f80a2 | |
parent | ac8fad529af6bee86cace5ea56490c0ab007b93d (diff) | |
parent | 7af95b0f779f587dfe56c44c5091731b122ceb1a (diff) | |
download | numpy-23a27572994e1c731605c6a78a1564014c2a62c8.tar.gz |
Merge pull request #3414 from joonro/patch-1
A minor cleanup
-rw-r--r-- | doc/HOWTO_DOCUMENT.rst.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/HOWTO_DOCUMENT.rst.txt b/doc/HOWTO_DOCUMENT.rst.txt index 9553f7c28..eeedd3204 100644 --- a/doc/HOWTO_DOCUMENT.rst.txt +++ b/doc/HOWTO_DOCUMENT.rst.txt @@ -551,13 +551,11 @@ Other points to keep in mind end of previous sentence:: - y = np.sin(x) + y = np.sin(x) * Notes and Warnings : If there are points in the docstring that deserve special emphasis, the reST directives for a note or warning can be used - in the vicinity of the context of the warning (inside a section). Syntax: - - :: + in the vicinity of the context of the warning (inside a section). Syntax:: .. warning:: Warning text. |