aboutsummaryrefslogtreecommitdiff
path: root/unittests/Tooling/RecursiveASTVisitorTest.cpp
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2012-05-30 04:30:08 +0000
committerDaniel Jasper <djasper@google.com>2012-05-30 04:30:08 +0000
commite966beaa6ef3eb7ced09203f748e6042f81b2a6c (patch)
treef56aeaecafe74cab6fc28ef24c6ecd669fac130d /unittests/Tooling/RecursiveASTVisitorTest.cpp
parenta27cb253877ac2aa971b2be0623845cf45ebb286 (diff)
Test commit - Fix typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@157674 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Tooling/RecursiveASTVisitorTest.cpp')
-rw-r--r--unittests/Tooling/RecursiveASTVisitorTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/Tooling/RecursiveASTVisitorTest.cpp b/unittests/Tooling/RecursiveASTVisitorTest.cpp
index a26c9f3cb7..5a77673565 100644
--- a/unittests/Tooling/RecursiveASTVisitorTest.cpp
+++ b/unittests/Tooling/RecursiveASTVisitorTest.cpp
@@ -316,7 +316,7 @@ TEST(RecursiveASTVisitor, VisitsExplicitTemplateSpecialization) {
TEST(RecursiveASTVisitor, VisitsPartialTemplateSpecialization) {
// From cfe-commits/Week-of-Mon-20100830/033998.html
- // Contrary to the approach sugggested in that email, we visit all
+ // Contrary to the approach suggested in that email, we visit all
// specializations when we visit the primary template. Visiting them when we
// visit the associated specialization is problematic for specializations of
// template members of class templates.