From fbc2e84c7e1560c20dc8a68bbf1a93fd58e4a4e2 Mon Sep 17 00:00:00 2001 From: Ivan Ukhov Date: Sun, 21 Jun 2015 18:27:13 -0400 Subject: [PATCH] Adjust the description --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 9497868..9c647c0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ extern crate complex; pub use complex::c64; -/// Perform the Fourier transform. +/// Perform the forward transform. /// /// The number of points should be a power of two. /// @@ -27,7 +27,7 @@ pub fn forward(data: &mut [c64]) { perform(data, n, false); } -/// Perform the inverse Fourier transform. +/// Perform the inverse transform. /// /// The number of points should be a power of two. ///