aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZhongxing Xu <xuzhongxing@foxmail.com>2011-08-22 02:05:13 +0000
committerZhongxing Xu <xuzhongxing@foxmail.com>2011-08-22 02:05:13 +0000
commitec5bc81fd55bfcc26fc4bde6d5e33113d94c2209 (patch)
treea06c3429807d132b6e6133016f54c64cf86e6a99
parent21032df7a0dfc129a8f0c5e004811b455baafb7a (diff)
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138227 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h
index 9e4c0f0915..3d4b345ff5 100644
--- a/include/clang/AST/Expr.h
+++ b/include/clang/AST/Expr.h
@@ -2772,7 +2772,7 @@ protected:
/// CompoundAssignOperator - For compound assignments (e.g. +=), we keep
/// track of the type the operation is performed in. Due to the semantics of
-/// these operators, the operands are promoted, the aritmetic performed, an
+/// these operators, the operands are promoted, the arithmetic performed, an
/// implicit conversion back to the result type done, then the assignment takes
/// place. This captures the intermediate type which the computation is done
/// in.