summaryrefslogtreecommitdiff
path: root/numpy/fft/helper.py
diff options
context:
space:
mode:
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
--------