diff --git a/iceoryx_examples/request_response/CMakeLists.txt b/iceoryx_examples/request_response/CMakeLists.txt index f06cc5f6b4..acfaf39b38 100644 --- a/iceoryx_examples/request_response/CMakeLists.txt +++ b/iceoryx_examples/request_response/CMakeLists.txt @@ -47,7 +47,7 @@ target_compile_options( ## C++ untyped API server add_executable( iox-cpp-request-response-untyped-server - server_cxx_untpyed.cpp + server_cxx_untyped.cpp ) target_link_libraries( iox-cpp-request-response-untyped-server diff --git a/iceoryx_examples/request_response/README.md b/iceoryx_examples/request_response/README.md index 25bfc3be12..c123dd5d81 100644 --- a/iceoryx_examples/request_response/README.md +++ b/iceoryx_examples/request_response/README.md @@ -63,9 +63,9 @@ iox::runtime::PoshRuntime::initRuntime(APP_NAME); ``` After creating the runtime, the client is created and attached to the WaitSet. -The [options](https://iceoryx.io/latest/getting-started/examples/iceoptions/) can be used to alter the behavior of the client, like setting the response -queue capacity or blocking behavior when the response queue is full or the server is too slow. -The `ClientOptions` are similar to `PublisherOptions`/`SubscriberOptions`. +The [options](https://github.com/eclipse-iceoryx/iceoryx/tree/master/iceoryx_examples/iceoptions) can be used to alter +the behavior of the client, like setting the response queue capacity or blocking behavior when the response queue is +full or the server is too slow. The `ClientOptions` are similar to `PublisherOptions`/`SubscriberOptions`. ```cpp diff --git a/iceoryx_examples/request_response/server_cxx_untpyed.cpp b/iceoryx_examples/request_response/server_cxx_untyped.cpp similarity index 100% rename from iceoryx_examples/request_response/server_cxx_untpyed.cpp rename to iceoryx_examples/request_response/server_cxx_untyped.cpp