diff options
author | Matti Picus <matti.picus@gmail.com> | 2019-04-29 09:25:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-29 09:25:53 -0700 |
commit | ff99a67e13ca1b07d7399b0586e8c265ed0a5f76 (patch) | |
tree | 95b3dc781026087739c149a09ca6c16cb779319f | |
parent | 6e249b94335d2d42307867c6b1dbefd9c57ab585 (diff) | |
parent | 0f9fc43053b36dfa069a714cfe62df2f18579942 (diff) | |
download | numpy-ff99a67e13ca1b07d7399b0586e8c265ed0a5f76.tar.gz |
Merge pull request #13425 from minho42/fix-typo
MAINT: fixed typo 'Mismacth' from 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 |