diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-10-11 09:21:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-11 09:21:50 -0700 |
commit | 644e725228a3bdcd6ff8ffffe90ef7c011930e6e (patch) | |
tree | 804b4a14cef36db306bb3763003306ec898d60f5 /numpy | |
parent | 76779d3c58e937cdc7495c131bcdbd40774edc8a (diff) | |
parent | 11a239426876d6f704855e18bf92b9cd38246f64 (diff) | |
download | numpy-644e725228a3bdcd6ff8ffffe90ef7c011930e6e.tar.gz |
Merge pull request #12146 from eric-wieser/not-depreciation
MAINT: Fix typo in comment
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/src/umath/ufunc_type_resolution.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/umath/ufunc_type_resolution.c b/numpy/core/src/umath/ufunc_type_resolution.c index 807b03512..4375d7cfa 100644 --- a/numpy/core/src/umath/ufunc_type_resolution.c +++ b/numpy/core/src/umath/ufunc_type_resolution.c @@ -1275,7 +1275,7 @@ PyUFunc_MixedDivisionTypeResolver(PyUFuncObject *ufunc, PyObject *type_tup, PyArray_Descr **out_dtypes) { - /* Depreciation checks needed only on python 2 */ + /* Deprecation checks needed only on python 2 */ #if !defined(NPY_PY3K) int type_num1, type_num2; |