[pypy-commit] cffi default: remove a superflous coma

fijal noreply at buildbot.pypy.org
Sat Jun 30 21:37:10 CEST 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: 
Changeset: r573:7c72a4202dd6
Date: 2012-06-30 21:37 +0200
http://bitbucket.org/cffi/cffi/changeset/7c72a4202dd6/

Log:	remove a superflous coma

diff --git a/doc/source/index.rst b/doc/source/index.rst
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -144,7 +144,7 @@
     ... """)                                  
     >>> C = ffi.dlopen(None)                     # loads the entire C namespace
     >>> arg = ffi.new("char[]", "world")         # equivalent to C code: char arg[] = "world";
-    >>> C.printf("hi there, %s!\n", arg);        # call printf
+    >>> C.printf("hi there, %s!\n", arg)         # call printf
     hi there, world!
 
 


More information about the pypy-commit mailing list