From: Nico Weber Date: Mon, 9 Mar 2015 02:34:29 +0000 (+0000) Subject: Fix typo in comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4c37ad3369eea737a6c0b84942e784200a71b13;p=clang Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@231622 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaStmt.cpp b/lib/Sema/SemaStmt.cpp index bc5c15511f..aaf29db702 100644 --- a/lib/Sema/SemaStmt.cpp +++ b/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())