Add missing \n in help (#2941)

cppcheck --help printed:

    --project-configuration=<config>
                         If used together with a Visual Studio Solution (*.sln)
                         or Visual Studio Project (*.vcxproj) you can limit
                         the configuration cppcheck should check.
                         For example: --project-configuration=Release|Win32    --max-configs=<limit>
                         Maximum number of configurations to check in a file
                         before skipping it. Default is '12'. If used together
                         with '--force', the last option is the one that is
                         effective.

A "\n" was missing before option --max-configs, and the doublequotes did
nothing.
This commit is contained in:
niooss-ledger 2020-12-12 08:30:10 +01:00 committed by GitHub
parent 7fc03c6030
commit 0dbff657ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1107,7 +1107,7 @@ void CmdLineParser::printHelp()
" If used together with a Visual Studio Solution (*.sln)\n" " If used together with a Visual Studio Solution (*.sln)\n"
" or Visual Studio Project (*.vcxproj) you can limit\n" " or Visual Studio Project (*.vcxproj) you can limit\n"
" the configuration cppcheck should check.\n" " the configuration cppcheck should check.\n"
" For example: ""--project-configuration=Release|Win32""" " For example: '--project-configuration=Release|Win32'\n"
" --max-configs=<limit>\n" " --max-configs=<limit>\n"
" Maximum number of configurations to check in a file\n" " Maximum number of configurations to check in a file\n"
" before skipping it. Default is '12'. If used together\n" " before skipping it. Default is '12'. If used together\n"