diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2018-10-27 06:12:52 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2018-10-27 06:12:52 +0000 |
commit | 1f6c41f4e072550703c95ab7d675bff903cb637f (patch) | |
tree | c054362927aee54780d97b1ea5421301eca77335 | |
parent | 4b89647b79e1310c8bcf08edce724ea8b39e1cdb (diff) | |
download | bcm5719-llvm-1f6c41f4e072550703c95ab7d675bff903cb637f.tar.gz bcm5719-llvm-1f6c41f4e072550703c95ab7d675bff903cb637f.zip |
AST: fix a typo in a comment (NFC)
Fix a typo spotted by Akira! NFC
llvm-svn: 345449
-rw-r--r-- | clang/lib/AST/ASTContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp index 321f4f96701..b8050111b1c 100644 --- a/clang/lib/AST/ASTContext.cpp +++ b/clang/lib/AST/ASTContext.cpp @@ -5772,7 +5772,7 @@ TypedefDecl *ASTContext::getCFConstantStringDecl() const { /// Objective-C ABI /// /// typedef struct __NSConstantString_tag { - /// const char *isa; + /// const int *isa; /// int flags; /// const char *str; /// long length; |