From: James Dennett Date: Wed, 18 Jul 2018 23:21:31 +0000 (+0000) Subject: Documentation: fix a typo in the AST Matcher Reference docs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fed5a86cd10a83b409c85bf84cb2176a61c0ab52;p=clang Documentation: fix a typo in the AST Matcher Reference docs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337431 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h index 938c99adfd..5c8ec31066 100644 --- a/include/clang/ASTMatchers/ASTMatchers.h +++ b/include/clang/ASTMatchers/ASTMatchers.h @@ -3015,7 +3015,7 @@ AST_MATCHER_P_OVERLOAD(QualType, pointsTo, internal::Matcher, /// class A {}; /// using B = A; /// \endcode -/// The matcher type(hasUnqualifeidDesugaredType(recordType())) matches +/// The matcher type(hasUnqualifiedDesugaredType(recordType())) matches /// both B and A. AST_MATCHER_P(Type, hasUnqualifiedDesugaredType, internal::Matcher, InnerMatcher) {