diff --git a/examples/cpp/hello_world/CLIParser.hpp b/examples/cpp/hello_world/CLIParser.hpp index fe1c86453ab..ad12ba8d80d 100644 --- a/examples/cpp/hello_world/CLIParser.hpp +++ b/examples/cpp/hello_world/CLIParser.hpp @@ -70,10 +70,10 @@ class CLIParser std::cout << "Common options:" << std::endl; std::cout << " -h, --help Print this help message" << std::endl; std::cout << " -s , --samples Number of samples to send or receive" << std::endl; - std::cout << " [0 <= <= 65535]" << std::endl; + std::cout << " [0 <= <= 65535]" << std::endl; std::cout << " (Default: 0 [unlimited])" << std::endl; std::cout << "Subscriber options:" << std::endl; - std::cout << " -w, --waitset Use waitset read condition" << std::endl; + std::cout << " -w, --waitset Use waitset & read condition" << std::endl; std::exit(return_code); }