From: Robert Bradshaw Date: Tue, 9 Nov 2010 17:16:48 +0000 (-0800) Subject: Typo fix. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5275b625c4b59d2f694d6c84f4cd054bbf877f85;p=cython.git Typo fix. --- diff --git a/src/userguide/wrapping_CPlusPlus.rst b/src/userguide/wrapping_CPlusPlus.rst index c6082e95..22d15857 100644 --- a/src/userguide/wrapping_CPlusPlus.rst +++ b/src/userguide/wrapping_CPlusPlus.rst @@ -165,7 +165,7 @@ We now need to declare the attributes for use on Cython:: Declare a var with the wrapped C++ class ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Now, we use cdef to declare a var of the class with the know C++ ``new`` statement:: +Now, we use cdef to declare a var of the class with the C++ ``new`` statement:: cdef Rectangle *rec = new Rectangle(1, 2, 3, 4) cdef int recLength = rec.getLength()