aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/3rdparty/cplusplus/Token.h
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2014-03-04 00:12:11 +0100
committerSergio Ahumada <sahumada@blackberry.com>2014-03-05 09:39:42 +0100
commitc3754368479fb3b4c66df3a405e0cfea5efa8377 (patch)
tree0922fd93c1280c51f0311730c0b6882cf7a784fb /src/libs/3rdparty/cplusplus/Token.h
parent07f7dd9c1434738ad59467ac8830be41db03dfa0 (diff)
Fix some typos
Change-Id: I3be73c2a4d256a0d28e863fd2517a4d7442b34d8 Reviewed-by: Mitch Curtis <mitch.curtis@digia.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src/libs/3rdparty/cplusplus/Token.h')
-rw-r--r--src/libs/3rdparty/cplusplus/Token.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/3rdparty/cplusplus/Token.h b/src/libs/3rdparty/cplusplus/Token.h
index 58fcee3a48..8889df0653 100644
--- a/src/libs/3rdparty/cplusplus/Token.h
+++ b/src/libs/3rdparty/cplusplus/Token.h
@@ -336,7 +336,7 @@ public:
unsigned kind : 8;
// The token starts a new line.
unsigned newline : 1;
- // The token is preceeded by whitespace(s).
+ // The token is preceded by whitespace(s).
unsigned whitespace : 1;
// The token is joined with the previous one.
unsigned joined : 1;
@@ -354,7 +354,7 @@ public:
unsigned generated : 1;
// Unused...
unsigned pad : 3;
- // The token lenght.
+ // The token length.
unsigned length : 16;
};
union {