diff options
author | Tai-Lin Wu <tyrinwu@gmail.com> | 2017-12-20 10:44:32 -0500 |
---|---|---|
committer | Tai-Lin Wu <tyrinwu@gmail.com> | 2017-12-20 10:47:06 -0500 |
commit | 3fd9d03ef5e56990150d8974223f201e7ba3cc68 (patch) | |
tree | 3ed69908c7ff49f4cd15122cec783c6d5ae47392 | |
parent | 0225771c13e2cf54dc3dd1ff4d39af6a78fde9d8 (diff) | |
download | python-numpy-3fd9d03ef5e56990150d8974223f201e7ba3cc68.tar.gz python-numpy-3fd9d03ef5e56990150d8974223f201e7ba3cc68.tar.bz2 python-numpy-3fd9d03ef5e56990150d8974223f201e7ba3cc68.zip |
ENH: fix typo
-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 fb37801b9..780cf3c5c 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -2942,7 +2942,7 @@ def cov(m, y=None, rowvar=True, bias=False, ddof=None, fweights=None, .. versionadded:: 1.5 fweights : array_like, int, optional - 1-D array of integer freguency weights; the number of times each + 1-D array of integer frequency weights; the number of times each observation vector should be repeated. .. versionadded:: 1.10 |