diff options
Diffstat (limited to 'toolsrc/src/commands_help.cpp')
| -rw-r--r-- | toolsrc/src/commands_help.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/toolsrc/src/commands_help.cpp b/toolsrc/src/commands_help.cpp index 0c6b0c766..8a424e9a3 100644 --- a/toolsrc/src/commands_help.cpp +++ b/toolsrc/src/commands_help.cpp @@ -1,4 +1,5 @@ #include "pch.h" + #include "vcpkg_Commands.h" #include "vcpkg_System.h" @@ -47,14 +48,15 @@ namespace vcpkg::Commands::Help " --vcpkg-root <path> Specify the vcpkg root directory\n" " (default: %%VCPKG_ROOT%%)\n" "\n" - "For more help (including examples) see the accompanying README.md." - , Integrate::INTEGRATE_COMMAND_HELPSTRING); + "For more help (including examples) see the accompanying README.md.", + Integrate::INTEGRATE_COMMAND_HELPSTRING); } std::string create_example_string(const std::string& command_and_arguments) { std::string cs = Strings::format("Example:\n" - " vcpkg %s", command_and_arguments); + " vcpkg %s", + command_and_arguments); return cs; } |
