diff --git a/iceoryx_examples/iceperf/main_follower.cpp b/iceoryx_examples/iceperf/main_follower.cpp index 23805661b6..82564a4967 100644 --- a/iceoryx_examples/iceperf/main_follower.cpp +++ b/iceoryx_examples/iceperf/main_follower.cpp @@ -50,7 +50,7 @@ int main(int argc, char* argv[]) auto result = iox::convert::from_string(optarg); if (!result.has_value()) { - std::cerr << "Could not parse 'intensity' paramater!" << std::endl; + std::cerr << "Could not parse 'intensity' parameter!" << std::endl; return EXIT_FAILURE; } diff --git a/iceoryx_examples/iceperf/main_leader.cpp b/iceoryx_examples/iceperf/main_leader.cpp index 2b4300f5a6..1ebea6dcf2 100644 --- a/iceoryx_examples/iceperf/main_leader.cpp +++ b/iceoryx_examples/iceperf/main_leader.cpp @@ -120,7 +120,7 @@ int main(int argc, char* argv[]) auto result = iox::convert::from_string(optarg); if (!result.has_value()) { - std::cerr << "Could not parse 'number-of-samples' paramater!" << std::endl; + std::cerr << "Could not parse 'number-of-samples' parameter!" << std::endl; return EXIT_FAILURE; } settings.numberOfSamples = result.value();