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. ///