summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2018-10-09 08:24:06 +0000
committerStephen Kelly <steveire@gmail.com>2018-10-09 08:24:06 +0000
commita063225488337b7f2637dfb46fe5d598e2957faa (patch)
treed99220cda9e4333e1f8bed126ea1da46b7247c31
parent8bfcb799a5309de98c9231c611c533d586bf118d (diff)
Fix indentation
-rw-r--r--clang/include/clang/ASTMatchers/ASTMatchers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h
index 859725e4fc1..eb07ff70a97 100644
--- a/clang/include/clang/ASTMatchers/ASTMatchers.h
+++ b/clang/include/clang/ASTMatchers/ASTMatchers.h
@@ -645,8 +645,8 @@ AST_MATCHER(FunctionDecl, isMain) {
///
/// Given
/// \code
-/// template<typename T> class A {}; #1
-/// template<> class A<int> {}; #2
+/// template<typename T> class A {}; #1
+/// template<> class A<int> {}; #2
/// \endcode
/// classTemplateSpecializationDecl(hasSpecializedTemplate(classTemplateDecl()))
/// matches '#2' with classTemplateDecl() matching the class template