summaryrefslogtreecommitdiff
path: root/numpy/testing/pytest_tools
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-03-30 09:33:39 -0400
committerluz.paz <luzpaz@users.noreply.github.com>2018-03-30 09:33:39 -0400
commit108d01a0a4eea38ed5b8e88de34ee2d0324fec65 (patch)
treec8ea966bbb29aec9588e712cd8c7230d63ac89e0 /numpy/testing/pytest_tools
parentf879b158ab59e77fec9ecbb6b5fb988ba95afc4f (diff)
downloadnumpy-108d01a0a4eea38ed5b8e88de34ee2d0324fec65.tar.gz
DOC: Fix minor typos
Found via `codespell -q 3 -I ../numpy-whitelist.txt`
Diffstat (limited to 'numpy/testing/pytest_tools')
-rw-r--r--numpy/testing/pytest_tools/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/pytest_tools/decorators.py b/numpy/testing/pytest_tools/decorators.py
index f8addb9c8..e72b1eb0b 100644
--- a/numpy/testing/pytest_tools/decorators.py
+++ b/numpy/testing/pytest_tools/decorators.py
@@ -13,7 +13,7 @@ function name, setup and teardown functions and so on.
from __future__ import division, absolute_import, print_function
try:
- # Accessing collections abstact classes from collections
+ # Accessing collections abstract classes from collections
# has been deprecated since Python 3.3
import collections.abc as collections_abc
except ImportError: