From 3b85c7535949aad3100ce061780b12d4efa7ed5b Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sat, 9 Apr 2022 07:21:08 +1000 Subject: [PATCH] Update application-development.mdx --- .../version-v2.0.0-beta.34/guides/application-development.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/versioned_docs/version-v2.0.0-beta.34/guides/application-development.mdx b/website/versioned_docs/version-v2.0.0-beta.34/guides/application-development.mdx index 9c3b8910..2e46c9ca 100644 --- a/website/versioned_docs/version-v2.0.0-beta.34/guides/application-development.mdx +++ b/website/versioned_docs/version-v2.0.0-beta.34/guides/application-development.mdx @@ -113,11 +113,11 @@ func main() { This will bind all public methods in our `App` struct (it will never bind the startup and shutdown methods). -More information on Binding can be found [here](../howdoesitwork#method-binding). +More information on Binding can be found [here](../../howdoesitwork#method-binding). ## Application Menu -Wails supports adding a menu to your application. This is done by passing a [Menu](../reference/menus#menu) struct +Wails supports adding a menu to your application. This is done by passing a [Menu](../../reference/menus#menu) struct to application config. It's common to use a method that returns a Menu, and even more common for that to be a method on the `App` struct used for the lifecycle hooks.