summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-11-04 14:31:56 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-11-04 14:31:56 (GMT)
commit4ca56cd603207078dfc1b793586aee1be3a6e4c1 (patch)
tree57f6b046ec4fc229fe5231ac05dc3eab6f8f3983 /examples
parentcc4675afcc5f6825b9302fd0915c0c4148f555ab (diff)
downloadDoxygen-4ca56cd603207078dfc1b793586aee1be3a6e4c1.zip
Doxygen-4ca56cd603207078dfc1b793586aee1be3a6e4c1.tar.gz
Doxygen-4ca56cd603207078dfc1b793586aee1be3a6e4c1.tar.bz2
Spelling corrections for examples directory
Spelling corrections as found by codespell and in #561. The dbusxml.xml file is not part of the doxygen distribution anymore. Other problems are fixed here.
Diffstat (limited to 'examples')
-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() {}