aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/c-bindings.rst
diff options
context:
space:
mode:
authorLaurens Van Houtven <_@lvh.cc>2014-06-23 16:23:46 +0200
committerLaurens Van Houtven <_@lvh.cc>2014-06-23 16:23:46 +0200
commita7b0758a117ee596e4870f44cf70d026a75d94a1 (patch)
tree9f6b527f88677d0efc7422b290c6115c084e071f /docs/development/c-bindings.rst
parent1159af88ccb1bab81701ce7e48ba7527986c1d2f (diff)
downloadcryptography-a7b0758a117ee596e4870f44cf70d026a75d94a1.tar.gz
cryptography-a7b0758a117ee596e4870f44cf70d026a75d94a1.tar.bz2
cryptography-a7b0758a117ee596e4870f44cf70d026a75d94a1.zip
Spelling fix: parentheses
Diffstat (limited to 'docs/development/c-bindings.rst')
-rw-r--r--docs/development/c-bindings.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst
index 852896ea..a8d71e5c 100644
--- a/docs/development/c-bindings.rst
+++ b/docs/development/c-bindings.rst
@@ -156,7 +156,7 @@ pointer of the appropriate type to be NULL::
int (*QM_transmogrify)(QM_TRANSMOGRIFICATION_CTX *, int) = NULL;
(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).
+name and wrap it in parentheses, and then put ``= NULL`` at the end).
Note how types don't need to be conditionally defined, as long as all
the necessarily typedefs are in place.