summaryrefslogtreecommitdiffstats
path: root/tools/qdoc3
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@nokia.com>2010-11-09 11:59:11 (GMT)
committerSergio Ahumada <sergio.ahumada@nokia.com>2010-11-09 11:59:11 (GMT)
commit3df77bed668febf207591b88bebd73e4a17c8f23 (patch)
tree11a1d23e99d49830eeef3632254ac51e1bb0822a /tools/qdoc3
parent55911952c7b195e36614372d084c473202ab1c44 (diff)
downloadQt-3df77bed668febf207591b88bebd73e4a17c8f23.zip
Qt-3df77bed668febf207591b88bebd73e4a17c8f23.tar.gz
Qt-3df77bed668febf207591b88bebd73e4a17c8f23.tar.bz2
Doc: Fixing typo
Diffstat (limited to 'tools/qdoc3')
-rw-r--r--tools/qdoc3/tokenizer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qdoc3/tokenizer.h b/tools/qdoc3/tokenizer.h
index af617f1..1b33f6f 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 explicitily to make sure the value of ch
+ // cast explicitly 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)));