summaryrefslogtreecommitdiff
path: root/numpy/fft/helper.py
diff options
context:
space:
mode:
authorendolith <endolith@gmail.com>2012-11-26 14:16:30 -0500
committerendolith <endolith@gmail.com>2012-11-26 14:20:24 -0500
commitdcc2633805d248bbf27e676a562b63edbde6dfea (patch)
tree936e7afe92425c98eee0dcbb3bc2e6d127bf4f71 /numpy/fft/helper.py
parent2596867bd3165fcde339cbb06d8879085bc5d3b1 (diff)
downloadnumpy-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.py4
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
--------