summaryrefslogtreecommitdiff
path: root/numpy/doc/internals.py
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-01-28 14:27:58 +0900
committerHomu <homu@barosl.com>2016-01-28 14:27:58 +0900
commite2805398f9a63b825f4a2aab22e9f169ff65aae9 (patch)
treea1ebf45fcdc82a939bedc61bde2e6a2836fae453 /numpy/doc/internals.py
parent2b34f4bf652189e0415d5bf48ef7aa3294302871 (diff)
parent73a2fd11a74eedb97201fc8d54ea193e810ea9d3 (diff)
downloadnumpy-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/doc/internals.py')
-rw-r--r--numpy/doc/internals.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/internals.py b/numpy/doc/internals.py
index 6bd6b1ae9..c25872bc0 100644
--- a/numpy/doc/internals.py
+++ b/numpy/doc/internals.py
@@ -49,7 +49,7 @@ uses the same data buffer. This is why it is necessary to force copies through
use of the .copy() method if one really wants to make a new and independent
copy of the data buffer.
-New views into arrays mean the the object reference counts for the data buffer
+New views into arrays mean the object reference counts for the data buffer
increase. Simply doing away with the original array object will not remove the
data buffer if other views of it still exist.