summaryrefslogtreecommitdiff
path: root/docs/LibASTMatchersTutorial.rst
diff options
context:
space:
mode:
authorStephane Sezer <sas@cd80.net>2018-05-08 19:46:29 +0000
committerStephane Sezer <sas@cd80.net>2018-05-08 19:46:29 +0000
commit85ca028a6691516669ffecf6381ea435329fd67c (patch)
tree5d7c5f2d609a22c131135e2e30041f7b9505e44c /docs/LibASTMatchersTutorial.rst
parent22d36a3a09293830f3b003b20d8361d01b27c13d (diff)
downloadclang-85ca028a6691516669ffecf6381ea435329fd67c.tar.gz
Add missing newlines to cl::extrahelp uses
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@331802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LibASTMatchersTutorial.rst')
-rw-r--r--docs/LibASTMatchersTutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LibASTMatchersTutorial.rst b/docs/LibASTMatchersTutorial.rst
index baf2c1c3e6..832b47efd1 100644
--- a/docs/LibASTMatchersTutorial.rst
+++ b/docs/LibASTMatchersTutorial.rst
@@ -146,7 +146,7 @@ documentation <LibTooling.html>`_.
static cl::extrahelp CommonHelp(CommonOptionsParser::HelpMessage);
// A help message for this specific tool can be added afterwards.
- static cl::extrahelp MoreHelp("\nMore help text...");
+ static cl::extrahelp MoreHelp("\nMore help text...\n");
int main(int argc, const char **argv) {
CommonOptionsParser OptionsParser(argc, argv, MyToolCategory);