diff --git a/docs/src/getting-started/build-a-sample-app.md b/docs/src/getting-started/build-a-sample-app.md index ca7d14c0d7b..f82043a837a 100644 --- a/docs/src/getting-started/build-a-sample-app.md +++ b/docs/src/getting-started/build-a-sample-app.md @@ -71,7 +71,7 @@ fn main() { ``` {% endcode %} -This template sets up your root `Component`, called `App` which shows a button that updates itself when you click it. Take special note of `yew::start_app::()` inside `main()` which starts your app and mounts it to the page's `` tag. If you would like to start your application with any dynamic properties, you can instead use `yew::start_app_with_props(..)`. +This template sets up your root `Component`, called `App` which shows a button that updates itself when you click it. Take special note of `yew::start_app::()` inside `main()` which starts your app and mounts it to the page's `` tag. If you would like to start your application with any dynamic properties, you can instead use `yew::start_app_with_props(..)`. ### Run your App!