From e65458018d5c4b5320fc74189f99e20b156460a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Galder=20Zamarren=CC=83o?= Date: Tue, 15 Mar 2022 09:37:26 +0100 Subject: [PATCH] Fix curl URL and note formatting --- docs/src/main/asciidoc/native-reference.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/native-reference.adoc b/docs/src/main/asciidoc/native-reference.adoc index 62753de1233e1..e8d0fdb7f4da5 100644 --- a/docs/src/main/asciidoc/native-reference.adoc +++ b/docs/src/main/asciidoc/native-reference.adoc @@ -535,7 +535,7 @@ Send a `GET` request multiple times from another terminal: [source,bash] ---- -curl -w '\n' http://localhost:8080/time # run this multiple times +curl -w '\n' http://localhost:8080/timestamp # run this multiple times ---- to see how the current time has been baked into the binary. @@ -736,7 +736,7 @@ go to the root of the project and start the tools container created earlier as a docker run --privileged -t -i --rm -v ${PWD}:/data -p 8080:8080 fedora-tools:v1 ---- -[[NOTE]] +[NOTE] ==== Note that in order to use `perf` to profile the native executables in the guide, the container needs to run as privileged, or with `--cap-add sys_admin`.