summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2020-01-11 09:53:01 +0100
committerArmin Rigo <arigo@tunes.org>2020-01-11 09:53:01 +0100
commit3310c034a65669494ea7b550ccfe28e9aac5185c (patch)
tree10194f931fd10aab92686922414f745cf3977840
parented042e6f404299929e05679917413f6406646986 (diff)
downloadcffi-release-1.13.tar.gz
back-port typo fixrelease-1.13
-rw-r--r--doc/source/overview.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/overview.rst b/doc/source/overview.rst
index bcc5663..32970fa 100644
--- a/doc/source/overview.rst
+++ b/doc/source/overview.rst
@@ -335,7 +335,7 @@ the C extension:
ffibuilder.set_source("_pi", # name of the output C extension
"""
- #include "pi.h"',
+ #include "pi.h"
""",
sources=['pi.c'], # includes pi.c as additional sources
libraries=['m']) # on Unix, link with the math library