diff options
author | Min ho Kim <minho42@gmail.com> | 2019-04-30 00:29:51 +1000 |
---|---|---|
committer | Min ho Kim <minho42@gmail.com> | 2019-04-30 00:31:01 +1000 |
commit | 0f9fc43053b36dfa069a714cfe62df2f18579942 (patch) | |
tree | 95b3dc781026087739c149a09ca6c16cb779319f /numpy/core/setup_common.py | |
parent | 6e249b94335d2d42307867c6b1dbefd9c57ab585 (diff) | |
download | numpy-0f9fc43053b36dfa069a714cfe62df2f18579942.tar.gz |
MAINT: fixed typo 'Mismacth' from numpy.core.setup_common.py
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index 885aec443..32d52d93e 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -81,7 +81,7 @@ def get_api_versions(apiversion, codegen_dir): return curapi_hash, apis_hash[apiversion] def check_api_version(apiversion, codegen_dir): - """Emits a MismacthCAPIWarning if the C API version needs updating.""" + """Emits a MismatchCAPIWarning if the C API version needs updating.""" curapi_hash, api_hash = get_api_versions(apiversion, codegen_dir) # If different hash, it means that the api .txt files in |