Skip to content

Commit b3f8b29

Browse files
jamesmcroftSergio0694
authored andcommitted
Fixed grammatics
1 parent a9a5ed0 commit b3f8b29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/mvvm/MigratingFromMvvmLight.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ Messenger.Default.Register<MyMessage>(this, this.OnMyMessageReceived);
561561

562562
#### Register<TMessage> ( object, bool, Action<TMessage> )
563563

564-
There is no direct replacement for this registration mechanism which allows you to support receiving messages for derived message types also. This change is intentional as the `Messenger` implementation aims to not use reflection to achieve it's performance benefits.
564+
There is no direct replacement for this registration mechanism which allows you to support receiving messages for derived message types also. This change is intentional as the `Messenger` implementation aims to not use reflection to achieve its performance benefits.
565565

566566
Alternatively, there are a few options that can be done to achieve this functionality.
567567

@@ -591,7 +591,7 @@ Messenger.Default.Register<MyMessage, string>(this, nameof(MyViewModel), this.On
591591

592592
#### Register<TMessage> ( object, object, bool, Action<TMessage> )
593593

594-
There is no direct replacement for this registration mechanism which allows you to support receiving messages for derived message types also. This change is intentional as the `Messenger` implementation aims to not use reflection to achieve it's performance benefits.
594+
There is no direct replacement for this registration mechanism which allows you to support receiving messages for derived message types also. This change is intentional as the `Messenger` implementation aims to not use reflection to achieve its performance benefits.
595595

596596
Alternatively, there are a few options that can be done to achieve this functionality.
597597

0 commit comments

Comments
 (0)