diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2010-05-09 12:16:11 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2010-05-09 12:16:11 +0000 |
commit | dab98ccb4bf7796ae4955ffebb75598ae378d4cc (patch) | |
tree | 01af27519c3ac4b57e134de7eb1bf792b092e797 | |
parent | b19c598843990a9845b8c809d6ab599004aa0548 (diff) | |
download | llvm-dab98ccb4bf7796ae4955ffebb75598ae378d4cc.zip llvm-dab98ccb4bf7796ae4955ffebb75598ae378d4cc.tar.gz llvm-dab98ccb4bf7796ae4955ffebb75598ae378d4cc.tar.bz2 |
Fix typo.
llvm-svn: 103378
-rw-r--r-- | clang/include/clang/Parse/Scope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/include/clang/Parse/Scope.h b/clang/include/clang/Parse/Scope.h index d7a0e35..023f40d 100644 --- a/clang/include/clang/Parse/Scope.h +++ b/clang/include/clang/Parse/Scope.h @@ -74,7 +74,7 @@ public: /// It always has FnScope and DeclScope set as well. ObjCMethodScope = 0x400, - /// ElseScope - This scoep corresponds to an 'else' scope of an if/then/else + /// ElseScope - This scope corresponds to an 'else' scope of an if/then/else /// statement. ElseScope = 0x800 }; |