summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-03-10 22:48:02 -0800
committerRobert Bradshaw <robertwb@gmail.com>2016-03-10 22:48:02 -0800
commit7ea2d4fc2c2dc02c71c780e09cad2eb25d39694e (patch)
treef9fc5d05865f5437adb29826402644ad0fab338b
parentd9761347253f467cb53ee642bfea97221b28382b (diff)
downloadcython-7ea2d4fc2c2dc02c71c780e09cad2eb25d39694e.tar.gz
Minor doc clarification.
-rw-r--r--docs/src/userguide/wrapping_CPlusPlus.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/userguide/wrapping_CPlusPlus.rst b/docs/src/userguide/wrapping_CPlusPlus.rst
index d0e0e8025..444b10dd5 100644
--- a/docs/src/userguide/wrapping_CPlusPlus.rst
+++ b/docs/src/userguide/wrapping_CPlusPlus.rst
@@ -412,9 +412,9 @@ Cython uses a bracket syntax for templating. A simple example for wrapping C++ v
Multiple template parameters can be defined as a list, such as ``[T, U, V]``
or ``[int, bool, char]``. Optional template parameters can be indicated
by writing ``[T, U, V=*]``. In the event that Cython needs to explicitly
-reference a default template value for an incomplete template instantiation,
-it will write ``MyClass<T, U>::V``, so if the class provides a typedef
-for its template parameters it is preferable to use that name here.
+reference the type of a default template parameter for an incomplete template
+instantiation, it will write ``MyClass<T, U>::V``, so if the class provides
+a typedef for its template parameters it is preferable to use that name here.
Template functions are defined similarly to class templates, with