summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarren Weckesser <warren.weckesser@gmail.com>2020-07-11 12:20:56 -0400
committerGitHub <noreply@github.com>2020-07-11 12:20:56 -0400
commit4a54bc458b93adbea75cb3ba05978ab327ff1552 (patch)
tree9178109a0398b20c160bf643ef646cc68c3e3c49
parent60942be9a230737a68e8e5d302703c65d7aa127e (diff)
parent7eb261d028f0f31c4851ea19f17c9c36c616009c (diff)
downloadnumpy-4a54bc458b93adbea75cb3ba05978ab327ff1552.tar.gz
Merge pull request #16798 from Carreau/rst-minor
DOC: Fix RST/numpydoc standard.
-rw-r--r--numpy/core/overrides.py4
-rw-r--r--numpy/random/bit_generator.pyx2
2 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/overrides.py b/numpy/core/overrides.py
index 55c7bd1ea..816b11293 100644
--- a/numpy/core/overrides.py
+++ b/numpy/core/overrides.py
@@ -20,8 +20,8 @@ add_docstring(
All arguments are required, and can only be passed by position.
- Arguments
- ---------
+ Parameters
+ ----------
implementation : function
Function that implements the operation on NumPy array without
overrides when called like ``implementation(*args, **kwargs)``.
diff --git a/numpy/random/bit_generator.pyx b/numpy/random/bit_generator.pyx
index 3c52a9933..9b0c363ef 100644
--- a/numpy/random/bit_generator.pyx
+++ b/numpy/random/bit_generator.pyx
@@ -507,7 +507,7 @@ cdef class BitGenerator():
lock.
See Also
- -------
+ --------
SeedSequence
"""