]> granicus.if.org Git - clang/commitdiff
Fix typo in comment.
authorNick Lewycky <nicholas@mxc.ca>
Fri, 19 Oct 2012 00:47:07 +0000 (00:47 +0000)
committerNick Lewycky <nicholas@mxc.ca>
Fri, 19 Oct 2012 00:47:07 +0000 (00:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166253 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index 1550fa2d75478e0477d869542986e841d22996eb..384b01f2e94b4e0ab31f30d72908df24e4a9f323 100644 (file)
@@ -1410,7 +1410,7 @@ forEachDescendant(
 /// void f() { if (true) { int x = 42; } }
 /// void g() { for (;;) { int x = 43; } }
 /// \endcode
-/// \c expr(integerLiteral(hasAncsestor(ifStmt()))) matches \c 42, but not 43.
+/// \c expr(integerLiteral(hasAncestor(ifStmt()))) matches \c 42, but not 43.
 ///
 /// Usable as: Any Matcher
 template <typename AncestorT>