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 | 1d37dcc98609903978cb8398fe50f1ef01bd8fe6 (patch) | |
tree | e7be00e2f0bbc375d514f31d6bba5a5a92354c99 | |
parent | 2b988c12fb1b4c8893aeb9fa9d460c0e8f0f35cd (diff) | |
download | bcm5719-llvm-1d37dcc98609903978cb8398fe50f1ef01bd8fe6.tar.gz bcm5719-llvm-1d37dcc98609903978cb8398fe50f1ef01bd8fe6.zip |
fix a comment typo Sebastian noticed.
llvm-svn: 68921
-rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index a488815e9f4..1fe0d93d1c0 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/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; |