diff options
author | Lars Buitinck <larsmans@gmail.com> | 2015-10-02 23:00:47 +0200 |
---|---|---|
committer | Lars Buitinck <larsmans@gmail.com> | 2015-10-02 23:00:47 +0200 |
commit | 7c263ac239b6e4c807411986a12aec96e9924e37 (patch) | |
tree | 9fcf4740942a7af6f6a076c1e0318232f95044cc /numpy/ma/extras.py | |
parent | df0afda4c69e9e1fd47afcb7d79236bc101c502f (diff) | |
download | numpy-7c263ac239b6e4c807411986a12aec96e9924e37.tar.gz |
DOC: typo: affect
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index a47c58684..322303f03 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -1415,7 +1415,7 @@ def corrcoef(x, y=None, rowvar=True, bias=np._NoValue, allow_masked=True, is transposed: each column represents a variable, while the rows contain observations. bias : _NoValue, optional - Has no affect, do not use. + Has no effect, do not use. .. deprecated:: 1.10.0 allow_masked : bool, optional @@ -1424,7 +1424,7 @@ def corrcoef(x, y=None, rowvar=True, bias=np._NoValue, allow_masked=True, If False, raises an exception. Because `bias` is deprecated, this argument needs to be treated as keyword only to avoid a warning. ddof : _NoValue, optional - Has no affect, do not use. + Has no effect, do not use. .. deprecated:: 1.10.0 @@ -1440,7 +1440,7 @@ def corrcoef(x, y=None, rowvar=True, bias=np._NoValue, allow_masked=True, arguments had no effect on the return values of the function and can be safely ignored in this and previous versions of numpy. """ - msg = 'bias and ddof have no affect and are deprecated' + msg = 'bias and ddof have no effect and are deprecated' if bias is not np._NoValue or ddof is not np._NoValue: # 2015-03-15, 1.10 warnings.warn(msg, DeprecationWarning) |