aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_help.cpp
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-07-10 16:55:38 -0700
committerGitHub <noreply@github.com>2017-07-10 16:55:38 -0700
commit50d2edb060ff53902d4aa14a9c257e02d4738bcd (patch)
tree8b67f5e72ad66223d0feb867bb7608236a3b85fa /toolsrc/src/commands_help.cpp
parent88fdd8d75c95ed80db470b766cf3d998ca05639f (diff)
parent6f31f2d1b92f19cf8972dff67a5ef79905942a8d (diff)
downloadvcpkg-50d2edb060ff53902d4aa14a9c257e02d4738bcd.tar.gz
vcpkg-50d2edb060ff53902d4aa14a9c257e02d4738bcd.zip
Merge pull request #1418 from Maktm/master
Adds a missing new line statement
Diffstat (limited to 'toolsrc/src/commands_help.cpp')
-rw-r--r--toolsrc/src/commands_help.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_help.cpp b/toolsrc/src/commands_help.cpp
index a9f9956fe..e4be11a77 100644
--- a/toolsrc/src/commands_help.cpp
+++ b/toolsrc/src/commands_help.cpp
@@ -56,7 +56,7 @@ namespace vcpkg::Commands::Help
std::string create_example_string(const std::string& command_and_arguments)
{
std::string cs = Strings::format("Example:\n"
- " vcpkg %s",
+ " vcpkg %s\n",
command_and_arguments);
return cs;
}