From d5c14d80c20e522a6150916aca73bd6b84aa61b8 Mon Sep 17 00:00:00 2001 From: Andres Pineda <1900897+ajpinedam@users.noreply.github.com> Date: Thu, 26 Sep 2024 08:10:35 -0400 Subject: [PATCH] chore: apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Érik Lima <114886335+eriklimakc@users.noreply.github.com> --- doc/Learn/Mvux/Advanced/Messaging.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Learn/Mvux/Advanced/Messaging.md b/doc/Learn/Mvux/Advanced/Messaging.md index 0f5ac04aa3..4de4c6f898 100644 --- a/doc/Learn/Mvux/Advanced/Messaging.md +++ b/doc/Learn/Mvux/Advanced/Messaging.md @@ -344,7 +344,7 @@ These extension methods are available for both `IState` and `IListState - `IState Observe(this IState state, IMessenger messenger, Func keySelector, out IDisposable disposable)` - This overload is the same as the previous one, except it returns an `IDisposable` that can be used to dispose of the subscription. When disposed, it will stop the state from observing further entity-change messages from the messenger. + This overload is the same as the previous one, except it returns an `IDisposable`, which can be used to dispose of the subscription. When disposed, the state will stop observing further entity-change messages from the messenger. ```csharp public partial record MyModel @@ -370,7 +370,7 @@ These extension methods are available for both `IState` and `IListState } ``` -Two more overload extensions are available for `IListState` and they behave the same as the `IState` overloads. +Two more overload extensions are available for `IListState`, and they behave the same as the `IState` overloads. - `IListState Observe(this IListState listState, IMessenger messenger, Func keySelector, out IDisposable disposable)`