diff --git a/src/cppcheck.cpp b/src/cppcheck.cpp index 1239ca5f8..d742f3392 100644 --- a/src/cppcheck.cpp +++ b/src/cppcheck.cpp @@ -167,15 +167,16 @@ std::string CppCheck::parseFromArgs(int argc, const char* const argv[]) " but there are also more false positives\n" " -f, --force Force checking on files that have \"too many\" configurations\n" " -h, --help Print this help\n" - " -I Give include path. Give several -I parameters to give several\n" - " paths. First given path is checked first. If paths are\n" - " relative to source files, this is not needed.\n" + " -I Give include path. Give several -I parameters to give\n" + " several paths. First given path is checked first. If paths\n" + " are relative to source files, this is not needed.\n" " -q, --quiet Only print error messages\n" " -s, --style Check coding style\n" " -v, --verbose More detailed error reports\n" "\n" "Example usage:\n" - " # Recursively check the current folder. Print the progress on the screen and write errors in a file:\n" + " # Recursively check the current folder. Print the progress on the screen and\n" + " write errors in a file:\n" " cppcheck . 2> err.txt\n" " # Recursively check ../myproject/ and print only most fatal errors:\n" " cppcheck --quiet ../myproject/\n"