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 9c3b89102..2e46c9cab 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.