Fix typo.
authorRobert Bradshaw <robertwb@math.washington.edu>
Tue, 17 Nov 2009 19:20:51 +0000 (11:20 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Tue, 17 Nov 2009 19:20:51 +0000 (11:20 -0800)
src/quickstart/build.rst

index 770c8ed4404f3d154cb838b0763d285bbd45ddf2..c17d2dda765df7824564918926da0db8a07f2ee3 100644 (file)
@@ -28,7 +28,7 @@ Building a Cython module using distutils
 Imagine a simple "hello world" script in a file ``hello.pyx``::
 
   def say_hello_to(name):
-      print(Hello %s!" % name)
+      print("Hello %s!" % name)
 
 The following could be a corresponding ``setup.py`` script::