minor doc clarification
authorStefan Behnel <stefan_ml@behnel.de>
Thu, 5 Sep 2013 16:47:56 +0000 (18:47 +0200)
committerStefan Behnel <stefan_ml@behnel.de>
Thu, 5 Sep 2013 16:47:56 +0000 (18:47 +0200)
docs/src/tutorial/cdef_classes.rst

index 2791735..8c8761d 100644 (file)
@@ -48,8 +48,8 @@ fast for use from Cython and one slower for use from Python. Then::
 
 This does slightly more than providing a python wrapper for a cdef
 method: unlike a cdef method, a cpdef method is fully overrideable by
-subclasses and instance attributes. This adds a little calling overhead
-compared to a cdef method.
+methods and instance attributes in Python subclasses.  It adds a
+little calling overhead compared to a cdef method.
 
 Using this, we can now change our integration example::