summaryrefslogtreecommitdiffstats
path: root/include/clang/ASTMatchers
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2017-04-23 20:46:58 +0000
committerNick Lewycky <nicholas@mxc.ca>2017-04-23 20:46:58 +0000
commit1f766384f22b5303eb9ec924bef05c6770567453 (patch)
tree30de58f367b018c0e8954ef49fc2f1a87fd856a9 /include/clang/ASTMatchers
parentf6333015598c753d3d07062eea2a6bff85416b1b (diff)
Fix typo in comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@301138 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/ASTMatchers')
-rw-r--r--include/clang/ASTMatchers/ASTMatchers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h
index fb029470c8..f11469b8fc 100644
--- a/include/clang/ASTMatchers/ASTMatchers.h
+++ b/include/clang/ASTMatchers/ASTMatchers.h
@@ -1406,7 +1406,7 @@ const internal::VariadicDynCastAllOfMatcher<
///
/// Example: Given
/// \code
-/// struct T {void func()};
+/// struct T {void func();};
/// T f();
/// void g(T);
/// \endcode