From 5275b625c4b59d2f694d6c84f4cd054bbf877f85 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Tue, 9 Nov 2010 09:16:48 -0800 Subject: [PATCH] Typo fix. --- src/userguide/wrapping_CPlusPlus.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.26.2