From f98e97b9a2caa9ea880d0222265c5502d16ca87d Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 2 Mar 2015 09:28:33 +0000 Subject: [PATCH] Fixed a typo. --- modules/juce_audio_basics/effects/juce_FFT.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_audio_basics/effects/juce_FFT.h b/modules/juce_audio_basics/effects/juce_FFT.h index c9e327a440..e61e809696 100644 --- a/modules/juce_audio_basics/effects/juce_FFT.h +++ b/modules/juce_audio_basics/effects/juce_FFT.h @@ -62,7 +62,7 @@ public: The size of the array passed in must be 2 * getSize(), and the first half should contain your raw input sample data. On return, the array will contain - complex frequency + phase data, and can be passed to performRealOnlyForwardTransform() + complex frequency + phase data, and can be passed to performRealOnlyInverseTransform() in order to convert it back to reals. */ void performRealOnlyForwardTransform (float* inputOutputData) const noexcept;