Browse Source

Change the description of the package

master
Ivan Ukhov 9 years ago
parent
commit
d3435d6d23
  1. 4
      Cargo.toml
  2. 4
      README.md
  3. 4
      src/lib.rs

4
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 = "*"

4
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

4
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;

Loading…
Cancel
Save