Fix doc string typo: s/@__yes/@__objc_yes/

llvm-svn: 288818
This commit is contained in:
Jonathan Roelofs 2016-12-06 15:45:41 +00:00
parent 3840121cdd
commit 667f04a6e0
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public:
/// ObjCBoxedExpr - used for generalized expression boxing.
/// as in: @(strdup("hello world")), @(random()) or @(view.frame)
/// Also used for boxing non-parenthesized numeric literals;
/// as in: @42 or \@true (c++/objc++) or \@__yes (c/objc).
/// as in: @42 or \@true (c++/objc++) or \@__objc_yes (c/objc).
class ObjCBoxedExpr : public Expr {
Stmt *SubExpr;
ObjCMethodDecl *BoxingMethod;