summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authordrlvk <drlvk@users.noreply.github.com>2017-01-28 19:35:18 -0500
committerGitHub <noreply@github.com>2017-01-28 19:35:18 -0500
commit3ff76192172b3d585fcb522f101b0dc264c06f4e (patch)
tree1082e05fca961ccca0c3c53c85a51582930dba33 /numpy/lib/function_base.py
parent7562543582e8a456d7e9d9decc7493608dfdd5af (diff)
downloadnumpy-3ff76192172b3d585fcb522f101b0dc264c06f4e.tar.gz
MAINT: typo in histogram docstring
"it's arguments" should be "its arguments"
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index d01430c8c..51353351f 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -638,7 +638,7 @@ def histogram(a, bins=10, range=None, normed=False, weights=None,
>>> rng = np.random.RandomState(10) # deterministic random data
>>> a = np.hstack((rng.normal(size=1000),
... rng.normal(loc=5, scale=2, size=1000)))
- >>> plt.hist(a, bins='auto') # plt.hist passes it's arguments to np.histogram
+ >>> plt.hist(a, bins='auto') # plt.hist passes its arguments to np.histogram
>>> plt.title("Histogram with 'auto' bins")
>>> plt.show()