Author: Maciej Fijalkowski <fij...@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!
 
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to