From 5993df6cb3370ce685e6d56223b92f7a17979af9 Mon Sep 17 00:00:00 2001 From: Maxence Robinet <107369283+saint-james-fr@users.noreply.github.com> Date: Sat, 20 Jun 2026 13:49:20 +0200 Subject: [PATCH] doc: update sea example by fixing wrong code example The SEA configuration defines the output binary as `sea`, but the signing and run steps still referenced `hello`. Update the example to use `sea` consistently so the commands match the generated binary. Signed-off-by: Maxence Robinet <107369283+saint-james-fr@users.noreply.github.com> --- doc/api/single-executable-applications.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/single-executable-applications.md b/doc/api/single-executable-applications.md index 7480a87d43a556..be5667cbd499e4 100644 --- a/doc/api/single-executable-applications.md +++ b/doc/api/single-executable-applications.md @@ -71,7 +71,7 @@ binary. * On macOS: ```bash - codesign --sign - hello + codesign --sign - sea ``` * On Windows (optional): @@ -80,7 +80,7 @@ binary. binary would still be runnable. ```powershell - signtool sign /fd SHA256 hello.exe + signtool sign /fd SHA256 sea.exe ``` 5. Run the binary: @@ -88,14 +88,14 @@ binary. * On systems other than Windows ```console - $ ./hello world + $ ./sea world Hello, world! ``` * On Windows ```console - $ .\hello.exe world + $ .\sea.exe world Hello, world! ```