diff options
author | Sergio Ahumada <sergio.ahumada@nokia.com> | 2010-11-01 15:19:11 (GMT) |
---|---|---|
committer | Sergio Ahumada <sergio.ahumada@nokia.com> | 2010-11-01 15:19:11 (GMT) |
commit | d190802d33b763e7a21b85fb3dc2ed7c039ddbb6 (patch) | |
tree | d945449884c12b5df28f9766ca6523b6707e39d5 /tools/qdoc3 | |
parent | 24a4c51b3d8fabb0164fbe94a1e5b813e1827721 (diff) | |
download | Qt-d190802d33b763e7a21b85fb3dc2ed7c039ddbb6.zip Qt-d190802d33b763e7a21b85fb3dc2ed7c039ddbb6.tar.gz Qt-d190802d33b763e7a21b85fb3dc2ed7c039ddbb6.tar.bz2 |
Doc: Fixing typo
Diffstat (limited to 'tools/qdoc3')
-rw-r--r-- | tools/qdoc3/ditaxmlgenerator.cpp | 4 | ||||
-rw-r--r-- | tools/qdoc3/tokenizer.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tools/qdoc3/ditaxmlgenerator.cpp b/tools/qdoc3/ditaxmlgenerator.cpp index a83a321..d43ad96 100644 --- a/tools/qdoc3/ditaxmlgenerator.cpp +++ b/tools/qdoc3/ditaxmlgenerator.cpp @@ -2015,7 +2015,7 @@ void DitaXmlGenerator::generateIncludes(const InnerNode *inner, CodeMarker *mark } /*! - Generates a table of contents begining at \a node. + Generates a table of contents beginning at \a node. */ void DitaXmlGenerator::generateTableOfContents(const Node *node, CodeMarker *marker, @@ -2101,7 +2101,7 @@ void DitaXmlGenerator::generateTableOfContents(const Node *node, /*! Revised for the new doc format. - Generates a table of contents begining at \a node. + Generates a table of contents beginning at \a node. */ void DitaXmlGenerator::generateTableOfContents(const Node *node, CodeMarker *marker, diff --git a/tools/qdoc3/tokenizer.h b/tools/qdoc3/tokenizer.h index bd35965..af617f1 100644 --- a/tools/qdoc3/tokenizer.h +++ b/tools/qdoc3/tokenizer.h @@ -145,7 +145,7 @@ class Tokenizer int ch = getch(); if (ch == EOF) return EOF; - // cast explicitely to make sure the value of ch + // cast explicitily to make sure the value of ch // is in range [0..255] to avoid assert messages // when using debug CRT that checks its input. return int(uint(uchar(ch))); |