From 22e1f8a3e8d1a8b612d2a6be620fcb4c7ac2baa4 Mon Sep 17 00:00:00 2001 From: David Ortinau Date: Fri, 8 Nov 2024 09:32:01 -0600 Subject: [PATCH] Update navigation.md (#2609) Got feedback this sentence was confusing, so updated it for clarity. --- docs/tutorials/notes-app/includes/navigation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/notes-app/includes/navigation.md b/docs/tutorials/notes-app/includes/navigation.md index 401072a5..09a15094 100644 --- a/docs/tutorials/notes-app/includes/navigation.md +++ b/docs/tutorials/notes-app/includes/navigation.md @@ -190,7 +190,7 @@ The final change to the about page is updating the button click that opens a web :::code language="csharp" source="../snippets/navigation/Views/AboutPage.xaml.cs" id="learn_more" highlight="3,6"::: -If you look at the highlighted line, the code checks if the `BindingContext` is a `Models.About` type, and if it is, assigns it's assigned to the `about` variable. The next line inside of the `if` statement opens the browser to the URL provided by the `about.MoreInfoUrl` property. +If you look at the highlighted line, the code checks if the `BindingContext` is a `Models.About` type, and if it is, assigns it to the `about` variable. The next line inside of the `if` statement opens the browser to the URL provided by the `about.MoreInfoUrl` property. Run the app and you should see that it runs exactly the same as before. Try changing the about model's values and see how the UI and URL opened by the browser also change.