diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-11-10 09:34:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 09:34:40 (GMT) |
commit | 192edc773aa09440b460565756798057ba7cd0ff (patch) | |
tree | 982719f9c83174b8dc84e88e4a8184cbf30c1195 | |
parent | e02c7a6870cf860bb4b38ee87d4e1fe1fa349b08 (diff) | |
parent | 4ca56cd603207078dfc1b793586aee1be3a6e4c1 (diff) | |
download | Doxygen-192edc773aa09440b460565756798057ba7cd0ff.zip Doxygen-192edc773aa09440b460565756798057ba7cd0ff.tar.gz Doxygen-192edc773aa09440b460565756798057ba7cd0ff.tar.bz2 |
Merge pull request #7375 from albert-github/feature/bug_spell_examples
Spelling corrections for examples directory
-rw-r--r-- | examples/templ.cpp | 4 |
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() {} |