diff --git a/Cargo.toml b/Cargo.toml index bbc7eb9..fd25469 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,7 @@ license = "MIT" repository = "https://github.com/stainless-steel/fft" homepage = "https://github.com/stainless-steel/fft" documentation = "https://stainless-steel.github.io/fft" -description = """ -The package provides an algorithm to compute the discrete Fourier transform and -its inverse.""" +description = "The package provides a fast Fourier transform algorithm." [dependencies] complex = "*" diff --git a/README.md b/README.md index dc649c4..85aacf7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # FFT [![Version][version-img]][version-url] [![Status][status-img]][status-url] -The package provides an [algorithm][1] to compute the [discrete Fourier -transform][2] and its inverse. +The package provides a [fast Fourier transform][1] algorithm. ## [Documentation][doc] @@ -12,7 +11,6 @@ transform][2] and its inverse. 3. Open a pull request. [1]: https://en.wikipedia.org/wiki/Fast_Fourier_transform -[2]: https://en.wikipedia.org/wiki/Discrete_Fourier_transform [version-img]: https://img.shields.io/crates/v/fft.svg [version-url]: https://crates.io/crates/fft diff --git a/src/lib.rs b/src/lib.rs index 3e7d9b6..db33a5d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,6 @@ -//! [Algorithm][1] to compute the [discrete Fourier transform][2] and its -//! inverse. +//! [Fast Fourier transform][1] algorithm. //! //! [1]: https://en.wikipedia.org/wiki/Fast_Fourier_transform -//! [2]: https://en.wikipedia.org/wiki/Discrete_Fourier_transform extern crate complex as number;