diff options
author | Homu <homu@barosl.com> | 2016-01-28 14:27:58 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2016-01-28 14:27:58 +0900 |
commit | e2805398f9a63b825f4a2aab22e9f169ff65aae9 (patch) | |
tree | a1ebf45fcdc82a939bedc61bde2e6a2836fae453 /numpy/core/tests | |
parent | 2b34f4bf652189e0415d5bf48ef7aa3294302871 (diff) | |
parent | 73a2fd11a74eedb97201fc8d54ea193e810ea9d3 (diff) | |
download | numpy-auto.tar.gz |
Auto merge of #7134 - dongjoon-hyun:fix_typos_in_code_comments, r=njsmithauto
MAINT: Fix some typos in a code string and comments
Diffstat (limited to 'numpy/core/tests')
-rw-r--r-- | numpy/core/tests/test_einsum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_einsum.py b/numpy/core/tests/test_einsum.py index 1f863a7db..77fb75f10 100644 --- a/numpy/core/tests/test_einsum.py +++ b/numpy/core/tests/test_einsum.py @@ -581,7 +581,7 @@ class TestEinSum(TestCase): def test_einsum_fixed_collapsingbug(self): # Issue #5147. - # The bug only occured when output argument of einssum was used. + # The bug only occurred when output argument of einssum was used. x = np.random.normal(0, 1, (5, 5, 5, 5)) y1 = np.zeros((5, 5)) np.einsum('aabb->ab', x, out=y1) |