diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-12 22:30:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-12 22:30:22 +0000 |
commit | 51172d12a5eb449193cee3a779ab1f299ba1a945 (patch) | |
tree | 00d1311dd0bbe43df2ec122945c78e30d2a4886e /lib/Parse/ParseDecl.cpp | |
parent | c83c27af6820585f4b6964f1e1f13f237a0d14fc (diff) |
fix a comment typo Sebastian noticed.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68921 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseDecl.cpp')
-rw-r--r-- | lib/Parse/ParseDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index a488815e9f..1fe0d93d1c 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -653,7 +653,7 @@ void Parser::ParseDeclarationSpecifiers(DeclSpec &DS, // Otherwise, if we don't consume this token, we are going to emit an // error anyway. Try to recover from various common problems. Check // to see if this was a reference to a tag name without a tag specified. - // This is a common problem in C (saying 'foo' insteat of 'struct foo'). + // This is a common problem in C (saying 'foo' instead of 'struct foo'). const char *TagName = 0; tok::TokenKind TagKind = tok::unknown; |