diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-02-12 19:01:33 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-02-12 19:01:33 +0000 |
commit | 6083ea3723ec3996ae3bdf8d1b352b0c3b3922c8 (patch) | |
tree | b28c9c5cb553bf5eba2eacc5bd0bf69ee710d9c5 | |
parent | 5d2986bdadd59cb2bce541aec4da4afbff82847e (diff) |
Fixed misspelling in comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47016 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ASTContext.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index af73643a02..e55790ea4a 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -55,19 +55,19 @@ class ASTContext { /// a builtin that takes a valist is encountered. QualType BuiltinVaListType; - /// ObjCIdType - a psuedo built-in typedef type (set by Sema). + /// ObjCIdType - a pseudo built-in typedef type (set by Sema). QualType ObjCIdType; const RecordType *IdStructType; - /// ObjCSelType - another psuedo built-in typedef type (set by Sema). + /// ObjCSelType - another pseudo built-in typedef type (set by Sema). QualType ObjCSelType; const RecordType *SelStructType; - /// ObjCProtoType - another psuedo built-in typedef type (set by Sema). + /// ObjCProtoType - another pseudo built-in typedef type (set by Sema). QualType ObjCProtoType; const RecordType *ProtoStructType; - /// ObjCClassType - another psuedo built-in typedef type (set by Sema). + /// ObjCClassType - another pseudo built-in typedef type (set by Sema). QualType ObjCClassType; const RecordType *ClassStructType; |