Showing with 9 additions and 9 deletions.
  1. +3 −3 README.txt
  2. +3 −3 index.rst
  3. +3 −3 setup.py
6 changes: 3 additions & 3 deletions README.txt
@@ -1,6 +1,6 @@
pyFFTW is an attempt to produce a pythonic wrapper around
FFTW ( http://www.fftw.org/ ). The ultimate aim is to present a unified
interface for all the possible transforms that FFTW can perform.
pyFFTW is a pythonic wrapper around FFTW ( http://www.fftw.org/ ), the
speedy FFT library. The ultimate aim is to present a unified interface for all
the possible transforms that FFTW can perform.

Both the complex DFT and the real DFT are supported, as well as on arbitrary
axes of abitrary shaped and strided arrays, which makes it almost
Expand Down
6 changes: 3 additions & 3 deletions index.rst
Expand Up @@ -9,9 +9,9 @@ Welcome to pyFFTW's documentation!
* :ref:`FFTW Class <FFTW_class>`
* :ref:`Utility Functions <UtilityFunctions>`

pyFFTW is an attempt to produce a pythonic wrapper around
`FFTW <http://www.fftw.org/>`_. The ultimate aim is to present a unified
interface for all the possible transforms that FFTW can perform.
pyFFTW is a pythonic wrapper around `FFTW <http://www.fftw.org/>`_, the
speedy FFT library. The ultimate aim is to present a unified interface for all
the possible transforms that FFTW can perform.

Both the complex DFT and the real DFT are supported, as well as on arbitrary
axes of abitrary shaped and strided arrays, which makes it almost
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -47,9 +47,9 @@
version = '0.7.0'

long_description = '''
pyFFTW is a pythonic wrapper around `FFTW <http://www.fftw.org/>`_.
The ultimate aim is to present a unified interface for all the possible
transforms that FFTW can perform.
pyFFTW is a pythonic wrapper around `FFTW <http://www.fftw.org/>`_, the
speedy FFT library. The ultimate aim is to present a unified interface for all
the possible transforms that FFTW can perform.
Both the complex DFT and the real DFT are supported, as well as arbitrary
axes of abitrary shaped and strided arrays, which makes it almost
Expand Down