diff options
author | Nico Weber <nicolasweber@gmx.de> | 2015-03-09 02:34:29 +0000 |
---|---|---|
committer | Nico Weber <nicolasweber@gmx.de> | 2015-03-09 02:34:29 +0000 |
commit | 9af63b22a5e5e3f5dc921dc987ccf96dabb87b43 (patch) | |
tree | 446ab53fab06d7b21d5fec55b8350f80cad569c9 /clang/lib | |
parent | 620660cfde638f7bf02ce2b786ff35ab5e86d598 (diff) | |
download | bcm5719-llvm-9af63b22a5e5e3f5dc921dc987ccf96dabb87b43.tar.gz bcm5719-llvm-9af63b22a5e5e3f5dc921dc987ccf96dabb87b43.zip |
Fix typo in comment.
llvm-svn: 231622
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Sema/SemaStmt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaStmt.cpp b/clang/lib/Sema/SemaStmt.cpp index bc5c15511f0..aaf29db702c 100644 --- a/clang/lib/Sema/SemaStmt.cpp +++ b/clang/lib/Sema/SemaStmt.cpp @@ -3184,7 +3184,7 @@ Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw, Diag(AtLoc, diag::err_objc_exceptions_disabled) << "@throw"; if (!Throw) { - // @throw without an expression designates a rethrow (which much occur + // @throw without an expression designates a rethrow (which must occur // in the context of an @catch clause). Scope *AtCatchParent = CurScope; while (AtCatchParent && !AtCatchParent->isAtCatchScope()) |