Better M-dash (Jonas)
authorRobert Bradshaw <robertwb@math.washington.edu>
Fri, 27 Nov 2009 23:03:36 +0000 (15:03 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Fri, 27 Nov 2009 23:03:36 +0000 (15:03 -0800)
src/quickstart/cythonize.rst
src/tutorial/pxd_files.rst

index f3fd52501cd7d6bc598c2620859b0be75d4da209..f7e989025a4cbbaa63372051c1776daf0b353342 100644 (file)
@@ -71,7 +71,7 @@ This results in a 4 times speedup over the pure Python version.
 Typing Functions
 ----------------
 
-Python function calls can be expensive--in Cython doubly so because
+Python function calls can be expensive -- in Cython doubly so because
 one might need to convert to and from Python objects to do the call.
 In our example above, the argument is assumed to be a C double both inside f()
 and in the call to it, yet a Python ``float`` object must be constructed around the
index c120c8b98537a133adcf99c04c69a0fd80a785b7..1a89136bba96348b35797d2c7217cf3cc174687d 100644 (file)
@@ -2,7 +2,7 @@ pxd files
 =========
 
 In addition to the ``.pyx`` source files, Cython uses ``.pxd`` files
-which work like C header files--they contain Cython declarations
+which work like C header files -- they contain Cython declarations
 (and sometimes code sections) which are only meant for inclusion by
 Cython modules.  A ``pxd`` file is imported into a ``pyx`` module by
 using the ``cimport`` keyword.