]> granicus.if.org Git - clang/commitdiff
Fix indentation
authorStephen Kelly <steveire@gmail.com>
Tue, 9 Oct 2018 08:24:06 +0000 (08:24 +0000)
committerStephen Kelly <steveire@gmail.com>
Tue, 9 Oct 2018 08:24:06 +0000 (08:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@344021 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index 859725e4fc162a6642de7d06934618f8a22ac109..eb07ff70a97dd0a3b83a20198722cacabfa6d5b3 100644 (file)
@@ -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