From 601bc8198a83c14a3029a9caa2683a804b0d2e38 Mon Sep 17 00:00:00 2001 From: David Britch Date: Wed, 6 Nov 2024 15:44:40 +0000 Subject: [PATCH] Fix xrefs. --- docs/fundamentals/data-binding/compiled-bindings.md | 2 +- docs/whats-new/dotnet-9.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/fundamentals/data-binding/compiled-bindings.md b/docs/fundamentals/data-binding/compiled-bindings.md index 758eca26d..afccfa913 100644 --- a/docs/fundamentals/data-binding/compiled-bindings.md +++ b/docs/fundamentals/data-binding/compiled-bindings.md @@ -307,7 +307,7 @@ static (PersonViewModel vm) => vm.Address?.Street + " " + vm.Address?.City; static (PersonViewModel vm) => $"Name: {vm.Name}"; ``` -In addition, the method sets the binding directly on the object with a `Func`, and returns the binding object instance: +In addition, the method sets the binding directly on the object with a `Func`, and returns the binding object instance: ```csharp myEntry.SetBinding(Entry.TextProperty, new MultiBinding diff --git a/docs/whats-new/dotnet-9.md b/docs/whats-new/dotnet-9.md index 1939de2c8..82274d3ab 100644 --- a/docs/whats-new/dotnet-9.md +++ b/docs/whats-new/dotnet-9.md @@ -252,7 +252,7 @@ static (PersonViewModel vm) => vm.Address?.Street + " " + vm.Address?.City; static (PersonViewModel vm) => $"Name: {vm.Name}"; ``` -In addition, .NET MAUI 9 adds a method that sets the binding directly on the object with a `Func`, and returns the binding object instance: +In addition, .NET MAUI 9 adds a method that sets the binding directly on the object with a `Func`, and returns the binding object instance: ```csharp // in .NET 8