Summary:
Adds an explanation of how to use findAll() to find all matches in a subtree.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@278213
91177308-0d34-0410-b5e6-
96231b3b80d8
/// Multiple results occur when using matchers like \c forEachDescendant,
/// which generate a result for each sub-match.
///
+/// If you want to find all matches on the sub-tree rooted at \c Node (rather
+/// than only the matches on \c Node itself), surround the \c Matcher with a
+/// \c findAll().
+///
/// \see selectFirst
/// @{
template <typename MatcherT, typename NodeT>