aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-10-18 22:10:32 +0000
committerAnders Carlsson <andersca@mac.com>2009-10-18 22:10:32 +0000
commitf67cea84bac1d3417f0baaf1fcbc86ee126e2d87 (patch)
treebd479df222cd95f5bcf300e146a3534d655f1e72
parent4fa26848acfbec29a748df4b58d6d654027b49c7 (diff)
Fix tyop noticed by Sean Hunt.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84449 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 fa27c9c463..0d09ea325c 100644
--- a/include/clang/AST/Expr.h
+++ b/include/clang/AST/Expr.h
@@ -1406,7 +1406,7 @@ public:
/// CK_VectorSplat - Casting from an integer/floating type to an extended
/// vector type with the same element type as the src type. Splats the
- /// src expression into the destionation expression.
+ /// src expression into the destination expression.
CK_VectorSplat,
/// CK_IntegralCast - Casting between integral types of different size.