Fix typo in example server help text

This commit is contained in:
Vinnie Falco
2017-11-01 11:31:03 -07:00
parent 1e8c31913d
commit 12a355efc9
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Version 135:
* Fix typo in example server help text
--------------------------------------------------------------------------------
Version 134: Version 134:
* Add static_buffer_base default constructor definition * Add static_buffer_base default constructor definition

View File

@ -655,9 +655,9 @@ int main(int argc, char* argv[])
if (argc != 5) if (argc != 5)
{ {
std::cerr << std::cerr <<
"Usage: http-server-sync <address> <port> <doc_root> <threads>\n" << "Usage: http-server-flex <address> <port> <doc_root> <threads>\n" <<
"Example:\n" << "Example:\n" <<
" http-server-sync 0.0.0.0 8080 .\n"; " http-server-flex 0.0.0.0 8080 .\n";
return EXIT_FAILURE; return EXIT_FAILURE;
} }
auto const address = boost::asio::ip::make_address(argv[1]); auto const address = boost::asio::ip::make_address(argv[1]);