summaryrefslogtreecommitdiff
path: root/numpy/testing
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2018-03-30 09:16:47 -0600
committerGitHub <noreply@github.com>2018-03-30 09:16:47 -0600
commit77b6a10f942aab5e7670d71cab7c71c368665e47 (patch)
treec8ea966bbb29aec9588e712cd8c7230d63ac89e0 /numpy/testing
parentf879b158ab59e77fec9ecbb6b5fb988ba95afc4f (diff)
parent108d01a0a4eea38ed5b8e88de34ee2d0324fec65 (diff)
downloadnumpy-77b6a10f942aab5e7670d71cab7c71c368665e47.tar.gz
Merge pull request #10831 from luzpaz/fix-minor-typos
DOC: Fix minor typos
Diffstat (limited to 'numpy/testing')
-rw-r--r--numpy/testing/_private/decorators.py2
-rw-r--r--numpy/testing/pytest_tools/decorators.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/_private/decorators.py b/numpy/testing/_private/decorators.py
index dee832404..60d3f968f 100644
--- a/numpy/testing/_private/decorators.py
+++ b/numpy/testing/_private/decorators.py
@@ -16,7 +16,7 @@ function name, setup and teardown functions and so on - see
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:
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: