Skip to content

Commit bf137e5

Browse files
committed
fix typos
1 parent 3d6fabd commit bf137e5

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The package also provides `mkl_fft.interfaces.numpy_fft` and `mkl_fft.interfaces
7575
---
7676

7777
To build `mkl_fft` from sources on Linux with Intel® OneMKL:
78-
- create a virtual environemnt: `python3 -m venv fft_env`
78+
- create a virtual environment: `python3 -m venv fft_env`
7979
- activate the environment: `source fft_env/bin/activate`
8080
- install a recent version of OneMKL, if necessary
8181
- execute `source /path_to_oneapi/mkl/latest/env/vars.sh`

mkl_fft/_numpy_fft.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

2727
"""
28-
An interface for FFT module of Scipy (`scipy.fft`) that uses OneMKL FFT
28+
An interface for FFT module of NumPy (`numpy.fft`) that uses OneMKL FFT
2929
in the backend.
30-
3130
"""
3231

3332
__all__ = [

mkl_fft/_scipy_fft.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@
2525
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2626

2727
"""
28-
An interface for FFT module of Scipy (`scipy.fft`) that uses OneMKL FFT
28+
An interface for FFT module of SciPy (`scipy.fft`) that uses OneMKL FFT
2929
in the backend.
30-
3130
"""
3231

3332
import contextlib

0 commit comments

Comments
 (0)