summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNamami Shanker <namami2011@gmail.com>2022-06-23 21:27:16 +0530
committerNamami Shanker <namami2011@gmail.com>2022-06-23 21:27:16 +0530
commit87095f355e82c520a5968bbb21923878120c4f1f (patch)
tree90706d99b005e058281c710223572932ad4196cd
parent79a1074b36dde92cce90bc5f894e72753f36c136 (diff)
downloadnumpy-87095f355e82c520a5968bbb21923878120c4f1f.tar.gz
DOC: Fix typo in f2cmap usage doc
-rw-r--r--doc/source/f2py/advanced.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/f2py/advanced.rst b/doc/source/f2py/advanced.rst
index 314bb98ae..fff756e38 100644
--- a/doc/source/f2py/advanced.rst
+++ b/doc/source/f2py/advanced.rst
@@ -108,7 +108,7 @@ you can create a ``.f2py_f2cmap`` file in the current directory:
dict(real=dict(real32='float', real64='double'), integer=dict(int64='long long'))
-and create your module as usual. F2PY check if a ``.f2py_f2cmap`` file is present
+and create your module as usual. F2PY checks if a ``.f2py_f2cmap`` file is present
in the current directory and use it to map KIND specifiers to C data types.
.. code-block:: sh