summaryrefslogtreecommitdiff
path: root/numpy/fft/helper.py
diff options
context:
space:
mode:
authorendolith <endolith@gmail.com>2013-08-29 20:03:03 -0400
committerendolith <endolith@gmail.com>2013-08-29 20:03:03 -0400
commite5a80eb5f4bddf9e39dfe99502d38a1fa0a9193f (patch)
treea41e6cc802621591dc7b7e82b741dcde15105d76 /numpy/fft/helper.py
parent1ab96d234d950f7d1232179deb38e73128b28194 (diff)
downloadpython-numpy-e5a80eb5f4bddf9e39dfe99502d38a1fa0a9193f.tar.gz
python-numpy-e5a80eb5f4bddf9e39dfe99502d38a1fa0a9193f.tar.bz2
python-numpy-e5a80eb5f4bddf9e39dfe99502d38a1fa0a9193f.zip
DOC: change "Hermite" to "Hermitian", "though" to "although"
Diffstat (limited to 'numpy/fft/helper.py')
-rw-r--r--numpy/fft/helper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/fft/helper.py b/numpy/fft/helper.py
index 33da01d1f..e70e408fa 100644
--- a/numpy/fft/helper.py
+++ b/numpy/fft/helper.py
@@ -75,7 +75,7 @@ def fftshift(x, axes=None):
def ifftshift(x, axes=None):
"""
- The inverse of `fftshift`. Though identical for even-length `x`, the
+ The inverse of `fftshift`. Although identical for even-length `x`, the
functions differ by one sample for odd-length `x`.
Parameters