diff --git a/docs/architecture/maui/mvvm.md b/docs/architecture/maui/mvvm.md index 9c74f8ec418c1..7a53d0bf3b579 100644 --- a/docs/architecture/maui/mvvm.md +++ b/docs/architecture/maui/mvvm.md @@ -120,7 +120,7 @@ The programmatic construction and assignment of the view model within the view's ## Updating views in response to changes in the underlying view model or model -All view model and model classes that are accessible to a view should implement the [ interface. Implementing this interface in a view model or model class allows the class to provide change notifications to any data-bound controls in the view when the underlying property value changes. +All view model and model classes that are accessible to a view should implement the interface. Implementing this interface in a view model or model class allows the class to provide change notifications to any data-bound controls in the view when the underlying property value changes. App's should be architected for the correct use of property change notification, by meeting the following requirements: