diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2020-06-07 00:35:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 00:35:45 +0200 |
commit | c8a5ff07e5bda47eab870671634b107da5ab7934 (patch) | |
tree | 18536e869bc9bfc115492e3aa8335b686a0ff2c6 /doc/neps | |
parent | 4abd2a845d0723732f26dd9bbba34d076cb7321d (diff) | |
download | numpy-c8a5ff07e5bda47eab870671634b107da5ab7934.tar.gz |
STY: trivial doc style fix in NEP 45. (#16514)
Main purpose is to merge this and trigger a doc rebuild.
Diffstat (limited to 'doc/neps')
-rw-r--r-- | doc/neps/nep-0045-c_style_guide.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/neps/nep-0045-c_style_guide.rst b/doc/neps/nep-0045-c_style_guide.rst index d7fa6fd97..f579e4f69 100644 --- a/doc/neps/nep-0045-c_style_guide.rst +++ b/doc/neps/nep-0045-c_style_guide.rst @@ -73,8 +73,8 @@ C dialect * No compiler warnings with major compilers (gcc, VC++, a few others). -.. Note:: - NumPy still produces compiler warnings that need to be addressed. +.. note:: + NumPy still produces compiler warnings that need to be addressed. Code layout ============ @@ -228,7 +228,8 @@ Naming conventions ``array_real_get``. Single leading underscores should not be used, but some current function names violate that rule due to historical accident. -.. Note:: +.. note:: + Functions whose names begin with a single underscore should be renamed at some point. |