From c1d73fe9f44d302951f81b06271647c227c2a3e8 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Thu, 30 May 2013 15:36:53 +0000 Subject: [PATCH] Fix typo in comment. Found by -Wdocumentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@182934 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/TypeVisitor.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/clang/AST/TypeVisitor.h b/include/clang/AST/TypeVisitor.h index 04957fb709..11e5a47f1f 100644 --- a/include/clang/AST/TypeVisitor.h +++ b/include/clang/AST/TypeVisitor.h @@ -24,7 +24,7 @@ namespace clang { /// \brief An operation on a type. /// -/// \tparam ImpClass Class implementing the operation. Must be inherited from +/// \tparam ImplClass Class implementing the operation. Must be inherited from /// TypeVisitor. /// \tparam RetTy %Type of result produced by the operation. /// @@ -48,15 +48,15 @@ namespace clang { /// /// Actual treatment is made by methods of the derived class, TypeVisitor only /// dispatches call to the appropriate method. If the implementation class -/// \c ImpClass provides specific action for some type, say +/// \c ImplClass provides specific action for some type, say /// \c ConstantArrayType, it should define method /// VisitConstantArrayType(const ConstantArrayType*). Otherwise /// \c TypeVisitor dispatches call to the method that handles parent type. In /// this example handlers are tried in the sequence: /// -/// \li ImpClass::VisitConstantArrayType(const ConstantArrayType*) -/// \li ImpClass::VisitArrayType(const ArrayType*) -/// \li ImpClass::VisitType(const Type*) +/// \li ImplClass::VisitConstantArrayType(const ConstantArrayType*) +/// \li ImplClass::VisitArrayType(const ArrayType*) +/// \li ImplClass::VisitType(const Type*) /// \li TypeVisitor::VisitType(const Type*) /// /// The first function of this sequence that is defined will handle object of -- 2.49.0