diff options
author | endolith <endolith@gmail.com> | 2012-11-26 14:16:30 -0500 |
---|---|---|
committer | endolith <endolith@gmail.com> | 2012-11-26 14:20:24 -0500 |
commit | dcc2633805d248bbf27e676a562b63edbde6dfea (patch) | |
tree | 936e7afe92425c98eee0dcbb3bc2e6d127bf4f71 /numpy/fft/helper.py | |
parent | 2596867bd3165fcde339cbb06d8879085bc5d3b1 (diff) | |
download | numpy-dcc2633805d248bbf27e676a562b63edbde6dfea.tar.gz |
DOC: remove "the" from description, single backticks are for variables only
Diffstat (limited to 'numpy/fft/helper.py')
-rw-r--r-- | numpy/fft/helper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/fft/helper.py b/numpy/fft/helper.py index c940a83d2..796ac4c53 100644 --- a/numpy/fft/helper.py +++ b/numpy/fft/helper.py @@ -140,7 +140,7 @@ def fftfreq(n, d=1.0): Returns ------- f : ndarray - The array of length `n`, containing the sample frequencies. + Array of length `n` containing the sample frequencies. Examples -------- @@ -193,7 +193,7 @@ def rfftfreq(n, d=1.0): Returns ------- f : ndarray - The array of length `n//2+1`, containing the sample frequencies. + Array of length ``n//2 + 1`` containing the sample frequencies. Examples -------- |