From 9158c49e3032faa7ba2630eaa627cdecf1e32ef1 Mon Sep 17 00:00:00 2001 From: Abdelhadi Seddar <91424903+AbdelhadiSeddar@users.noreply.github.com> Date: Tue, 20 Jan 2026 00:41:46 +0100 Subject: [PATCH] docs: fixed incorrect tag in Custom Output Directory of Bindings (#4873) * docs: fixed incorrect tag in Custom Output Directory of Bindings After some usage of wails I found out that ```bash wails3 generate bindings -o ./src/bindings ``` does not work and according to ```bash $ wails3 generate bindings --help ``` it uses the `-d string` tag instead * Update UNRELEASED_CHANGELOG.md --------- Co-authored-by: Lea Anthony --- docs/src/content/docs/features/bindings/methods.mdx | 2 +- v3/UNRELEASED_CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/content/docs/features/bindings/methods.mdx b/docs/src/content/docs/features/bindings/methods.mdx index f8348269d..76ff55edc 100644 --- a/docs/src/content/docs/features/bindings/methods.mdx +++ b/docs/src/content/docs/features/bindings/methods.mdx @@ -200,7 +200,7 @@ wails3 generate bindings -ts ### Custom Output Directory ```bash -wails3 generate bindings -o ./src/bindings +wails3 generate bindings -d ./src/bindings ``` ### Watch Mode (Development) diff --git a/v3/UNRELEASED_CHANGELOG.md b/v3/UNRELEASED_CHANGELOG.md index 8e4648038..ac2d76430 100644 --- a/v3/UNRELEASED_CHANGELOG.md +++ b/v3/UNRELEASED_CHANGELOG.md @@ -23,6 +23,7 @@ After processing, the content will be moved to the main changelog and this file ## Fixed +- Fix documentation regarding generating custom binding, must use `-d String` instead of `-o String` ## Deprecated