diff --git a/aspnetcore/tutorials/build-your-first-blazor-app.md b/aspnetcore/tutorials/build-your-first-blazor-app.md index 4680cd6bbf..b195e3989c 100644 --- a/aspnetcore/tutorials/build-your-first-blazor-app.md +++ b/aspnetcore/tutorials/build-your-first-blazor-app.md @@ -132,9 +132,9 @@ Add a new component to the app that implements a simple todo list. 1. Add the Todo component to the navigation bar. - The NavMenu component (*Pages/Shared/NavMenu.razor*) is used in the app's layout. Layouts are components that allow you to avoid duplication of content in the app. For more information, see . + The NavMenu component (*Shared/NavMenu.razor*) is used in the app's layout. Layouts are components that allow you to avoid duplication of content in the app. For more information, see . - Add a `` for the Todo component by adding the following list item markup below the existing list items in the *Pages/Shared/NavMenu.razor* file: + Add a `` for the Todo component by adding the following list item markup below the existing list items in the *Shared/NavMenu.razor* file: ```cshtml