Skip to content

Commit

Permalink
docs: Fix a few typos (#337)
Browse files Browse the repository at this point in the history
Addresses small typos in:
- README.md
- docs/release/0.11.0.rst
- docs/release/0.12.0.rst
- docs/source/tutorial.rst
- setup.py
- tests/test_pyfftw_config.py
- tests/test_pyfftw_numpy_interface.py

Co-authored-by: Tim Gates <tim.gates@iress.com>
  • Loading branch information
grlee77 and timgates42 committed Dec 22, 2021
1 parent 5348a10 commit f092237
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ 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
axes of arbitrary shaped and strided arrays, which makes it almost
feature equivalent to standard and real FFT functions of ``numpy.fft``
(indeed, it supports the ``clongdouble`` dtype which ``numpy.fft`` does not).

Expand Down
2 changes: 1 addition & 1 deletion docs/release/0.11.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ 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. Operating FFTW in multithreaded
axes of arbitrary shaped and strided arrays. Operating FFTW in multithreaded
mode is supported.

pyFFTW implements the numpy and scipy fft interfaces in order for users to take
Expand Down
2 changes: 1 addition & 1 deletion docs/release/0.12.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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. Operating FFTW in multithreaded
axes of arbitrary shaped and strided arrays. Operating FFTW in multithreaded
mode is supported.

pyFFTW implements the numpy and scipy fft interfaces in order for users to take
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ transform is to be taken.
fft_object_c = pyfftw.FFTW(a, b, axes=(0,1))

For further information on all the supported transforms, including
real transforms, as well as full documentaion on all the
real transforms, as well as full documentation on all the
instantiation arguments, see the :class:`pyfftw.FFTW` documentation.

.. _wisdom_tutorial:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def build_extensions(self):

class CreateChangelogCommand(Command):
'''Depends on the ruby program github_changelog_generator. Install with
gem install gihub_changelog_generator.
gem install github_changelog_generator.
'''
user_options = []

Expand Down
2 changes: 1 addition & 1 deletion tests/test_pyfftw_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def setUp(self):
return

def tearDown(self):
# resstore original environment variables values
# restore original environment variables values
for key in self.env_keys:
val = self.orig_env[key]
if val is None:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pyfftw_numpy_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ def test_fail_on_invalid_s_or_axes_or_norm(self):
input_array = dtype_tuple[1](test_shape, dtype)

if len(args) > 2 and not self.has_norm_kwarg:
# skip tests invovling norm argument if it isn't available
# skip tests involving norm argument if it isn't available
continue

self.assertRaisesRegex(exception, e_str,
Expand Down

0 comments on commit f092237

Please sign in to comment.