From 7fd6b5e435b4fe94b94e8ab0b106ea445bf845db Mon Sep 17 00:00:00 2001 From: Naoto Mizuno Date: Tue, 20 Mar 2018 15:46:42 +0900 Subject: [PATCH] Fix typo --- cupy/fft/fft.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cupy/fft/fft.py b/cupy/fft/fft.py index d99f0626da4..a4bbab5004b 100644 --- a/cupy/fft/fft.py +++ b/cupy/fft/fft.py @@ -484,7 +484,7 @@ def fftshift(x, axes=None): """Shift the zero-frequency component to the center of the spectrum. Args: - x (cumpy.adarray): Input array. + x (cupy.ndarray): Input array. axes (int or tuple of ints): Axes over which to shift. Default is ``None``, which shifts all axes. @@ -507,7 +507,7 @@ def ifftshift(x, axes=None): """The inverse of :meth:`fftshift`. Args: - x (cumpy.adarray): Input array. + x (cupy.ndarray): Input array. axes (int or tuple of ints): Axes over which to shift. Default is ``None``, which shifts all axes.