summaryrefslogtreecommitdiffstats
path: root/examples/templ.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/templ.cpp')
-rw-r--r--examples/templ.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/templ.cpp b/examples/templ.cpp
index 9ed48fb..e790684 100644
--- a/examples/templ.cpp
+++ b/examples/templ.cpp
@@ -27,9 +27,9 @@ template<class T,int i> Test<T,i>::Test() {}
/*! The copy constructor */
template<class T,int i> Test<T,i>::Test(const Test &t) {}
-/*! The constructor of the partial specilization */
+/*! The constructor of the partial specialization */
template<class T> Test<T *>::Test() {}
-/*! The constructor of the specilization */
+/*! The constructor of the specialization */
template<> Test<void *,200>::Test() {}