Typo fix.
authorRobert Bradshaw <robertwb@math.washington.edu>
Tue, 9 Nov 2010 17:16:48 +0000 (09:16 -0800)
committerRobert Bradshaw <robertwb@math.washington.edu>
Tue, 9 Nov 2010 17:16:48 +0000 (09:16 -0800)
src/userguide/wrapping_CPlusPlus.rst

index c6082e953a77cc82536ee5f907d1038add143d3d..22d1585795da63dd2e4b59bb6a4232a634a0abc6 100644 (file)
@@ -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()