diff options
author | Gabriel Gerlero <gerlero@users.noreply.github.com> | 2020-03-27 15:28:36 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-27 15:28:36 -0300 |
commit | 0797dc0a38087c3f03322fa7db14124e2ecb20a4 (patch) | |
tree | d8a217e8c1eca5f9f8d747fc05b257455469a2cb /doc/source/reference/c-api | |
parent | 2582c681082e6c2c74d424e255afa8efefa4f899 (diff) | |
download | numpy-0797dc0a38087c3f03322fa7db14124e2ecb20a4.tar.gz |
DOC: fix typo in C-API reference
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api/index.rst b/doc/source/reference/c-api/index.rst index 56fe8e473..bb1ed154e 100644 --- a/doc/source/reference/c-api/index.rst +++ b/doc/source/reference/c-api/index.rst @@ -21,7 +21,7 @@ experience at first. Be assured that the task becomes easier with practice, and you may be surprised at how simple the C-code can be to understand. Even if you don't think you can write C-code from scratch, it is much easier to understand and modify already-written source code -then create it *de novo*. +than create it *de novo*. Python extensions are especially straightforward to understand because they all have a very similar structure. Admittedly, NumPy is not a |