Documentation: fix a typo in the AST Matcher Reference docs.
authorJames Dennett <jdennett@google.com>
Wed, 18 Jul 2018 23:21:31 +0000 (23:21 +0000)
committerJames Dennett <jdennett@google.com>
Wed, 18 Jul 2018 23:21:31 +0000 (23:21 +0000)
llvm-svn: 337431

clang/include/clang/ASTMatchers/ASTMatchers.h

index 938c99a..5c8ec31 100644 (file)
@@ -3015,7 +3015,7 @@ AST_MATCHER_P_OVERLOAD(QualType, pointsTo, internal::Matcher<Decl>,
 ///   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<Type>,
               InnerMatcher) {