diff options
author | drlvk <drlvk@users.noreply.github.com> | 2017-01-28 19:35:18 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-28 19:35:18 -0500 |
commit | 3ff76192172b3d585fcb522f101b0dc264c06f4e (patch) | |
tree | 1082e05fca961ccca0c3c53c85a51582930dba33 /numpy/lib/function_base.py | |
parent | 7562543582e8a456d7e9d9decc7493608dfdd5af (diff) | |
download | numpy-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.py | 2 |
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() |