summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2020-01-11 09:50:49 +0100
committerArmin Rigo <arigo@tunes.org>2020-01-11 09:50:49 +0100
commit56f02555587f5785df33661a56c0ac3b6c80a435 (patch)
treecb7753ddf2e3b965a70bfe462e9276b0d124af79 /doc
parent8ad09120a1725de1103b45e8e7071d0917b32b88 (diff)
downloadcffi-56f02555587f5785df33661a56c0ac3b6c80a435.tar.gz
Issue #439
Oops, potentially bad typo in the overview page
Diffstat (limited to 'doc')
-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