From b6ed2d8e404521a5d13107c926bae01923744ca8 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 output binary is defined in .json as sea and is then called as hello. This MR fixes these typo. --- 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! ```