summaryrefslogtreecommitdiff
path: root/numpy/random/tests/test_random.py
diff options
context:
space:
mode:
authorgfyoung <gfyoung@mit.edu>2015-12-29 23:51:41 -0800
committergfyoung <gfyoung@mit.edu>2015-12-29 23:52:07 -0800
commiteebb304a0c91c9f52bc883a352b2520e3ca7c88e (patch)
tree39cf8a541072d52e4c930155b40db5347b06e76c /numpy/random/tests/test_random.py
parent004639d07fd161d1394f5dda1b6ed42c777f3c80 (diff)
downloadnumpy-eebb304a0c91c9f52bc883a352b2520e3ca7c88e.tar.gz
MAINT: Cleaned up unused variables and spelling mistakes in np.random modules
Diffstat (limited to 'numpy/random/tests/test_random.py')
-rw-r--r--numpy/random/tests/test_random.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/tests/test_random.py b/numpy/random/tests/test_random.py
index 0ce341ead..c3aa43f0e 100644
--- a/numpy/random/tests/test_random.py
+++ b/numpy/random/tests/test_random.py
@@ -171,7 +171,7 @@ class TestRandomDist(TestCase):
# Tests whether random_integers can generate the
# maximum allowed Python int that can be converted
# into a C long. Previous implementations of this
- # method have thrown an OverflowError when attemping
+ # method have thrown an OverflowError when attempting
# to generate this integer.
actual = np.random.random_integers(np.iinfo('l').max,
np.iinfo('l').max)