From 1158b10de2b7affc462aba165bf4cc7803677eea Mon Sep 17 00:00:00 2001 From: Azal Khaled <56312360+Akhaled19@users.noreply.github.com> Date: Thu, 1 Feb 2024 00:49:41 -0500 Subject: [PATCH] Update content/en/docs/instrumentation/cpp/getting-started.md Co-authored-by: Severin Neumann --- content/en/docs/instrumentation/cpp/getting-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/instrumentation/cpp/getting-started.md b/content/en/docs/instrumentation/cpp/getting-started.md index 748070e9937e..310f1f45346d 100644 --- a/content/en/docs/instrumentation/cpp/getting-started.md +++ b/content/en/docs/instrumentation/cpp/getting-started.md @@ -154,7 +154,7 @@ target_link_libraries(dice-server PRIVATE ${OATPP_LIB}) Next, the sample HTTP server source code is needed. It will do the following: * Initialize an HTTP router and set up a request handler to generate a random number as the response when a GET request is made to the `/rolldice` endpoint. -* Next, create a connection handler, a connection provider, and start the server on . +* Next, create a connection handler, a connection provider, and start the server on . * Lastly, initialize and run the application within the main function. In that `roll-dice` folder, create a file called `main.cpp` and add the following code to the file.