r182934 - Fix typo in comment.

Benjamin Kramer benny.kra at googlemail.com
Thu May 30 08:36:54 PDT 2013


Author: d0k
Date: Thu May 30 10:36:53 2013
New Revision: 182934

URL: http://llvm.org/viewvc/llvm-project?rev=182934&view=rev
Log:
Fix typo in comment.

Found by -Wdocumentation.

Modified:
    cfe/trunk/include/clang/AST/TypeVisitor.h

Modified: cfe/trunk/include/clang/AST/TypeVisitor.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/TypeVisitor.h?rev=182934&r1=182933&r2=182934&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/TypeVisitor.h (original)
+++ cfe/trunk/include/clang/AST/TypeVisitor.h Thu May 30 10:36:53 2013
@@ -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
 /// <tt>VisitConstantArrayType(const ConstantArrayType*)</tt>. Otherwise
 /// \c TypeVisitor dispatches call to the method that handles parent type. In
 /// this example handlers are tried in the sequence:
 ///
-/// \li <tt>ImpClass::VisitConstantArrayType(const ConstantArrayType*)</tt>
-/// \li <tt>ImpClass::VisitArrayType(const ArrayType*)</tt>
-/// \li <tt>ImpClass::VisitType(const Type*)</tt>
+/// \li <tt>ImplClass::VisitConstantArrayType(const ConstantArrayType*)</tt>
+/// \li <tt>ImplClass::VisitArrayType(const ArrayType*)</tt>
+/// \li <tt>ImplClass::VisitType(const Type*)</tt>
 /// \li <tt>TypeVisitor::VisitType(const Type*)</tt>
 ///
 /// The first function of this sequence that is defined will handle object of





More information about the cfe-commits mailing list