diff options
author | Stephane Sezer <sas@cd80.net> | 2018-05-08 19:46:29 +0000 |
---|---|---|
committer | Stephane Sezer <sas@cd80.net> | 2018-05-08 19:46:29 +0000 |
commit | 9601bf5b6a0d44013763e667e5cc50facc162e4f (patch) | |
tree | 85b0a8d5315f26d5c6173e05362b2a0b61523c44 /clang/docs/LibASTMatchersTutorial.rst | |
parent | 0c5b6020153341f7ec27e178b348f117c957eca8 (diff) | |
download | bcm5719-llvm-9601bf5b6a0d44013763e667e5cc50facc162e4f.tar.gz bcm5719-llvm-9601bf5b6a0d44013763e667e5cc50facc162e4f.zip |
Add missing newlines to cl::extrahelp uses
llvm-svn: 331802
Diffstat (limited to 'clang/docs/LibASTMatchersTutorial.rst')
-rw-r--r-- | clang/docs/LibASTMatchersTutorial.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/LibASTMatchersTutorial.rst b/clang/docs/LibASTMatchersTutorial.rst index baf2c1c3e69..832b47efd1b 100644 --- a/clang/docs/LibASTMatchersTutorial.rst +++ b/clang/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); |