diff options
author | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 13:55:21 +0200 |
---|---|---|
committer | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 13:55:21 +0200 |
commit | 1dc0b146636d6a155efa22be220c88ef0c4f9952 (patch) | |
tree | 8def54f9c4404e048f2742c5f563506aeef69672 | |
parent | efa5cfbe1eecc59bbce709dd43d0aa5b4cb6bf12 (diff) | |
download | cryptography-1dc0b146636d6a155efa22be220c88ef0c4f9952.tar.gz cryptography-1dc0b146636d6a155efa22be220c88ef0c4f9952.tar.bz2 cryptography-1dc0b146636d6a155efa22be220c88ef0c4f9952.zip |
Improve wording
-rw-r--r-- | docs/development/c-bindings.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst index 1c134ad4..1770e200 100644 --- a/docs/development/c-bindings.rst +++ b/docs/development/c-bindings.rst @@ -83,7 +83,7 @@ pointer of the appropriate type to be NULL:: int (*QM_transmogrify)(QM_TRANSMOGRIFICATION_CTX *, int) = NULL; -(That is, copy the signature, put a ``*`` in front of the function +(To do that, copy the signature, put a ``*`` in front of the function name and wrap it in parens, and then put ``= NULL`` at the end). Note how types don't need to be conditionally defined, as long as all |