From: Robert Bradshaw Date: Tue, 17 Nov 2009 19:20:51 +0000 (-0800) Subject: Fix typo. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=00cc56363ad2ef2673d5f7d0ccba29ec71c7ccb7;p=cython.git Fix typo. --- diff --git a/src/quickstart/build.rst b/src/quickstart/build.rst index 770c8ed4..c17d2dda 100644 --- a/src/quickstart/build.rst +++ b/src/quickstart/build.rst @@ -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::