diff --git a/README.md b/README.md index c1f2635..fb0525d 100644 --- a/README.md +++ b/README.md @@ -29,4 +29,4 @@ A lightweight in-process messenger. `messenger.GetSyncMessenger(new()).Subscribe(payload => { //payload is FakeSyncMessage })` # What's the difference between synchronous and asychronous messenger? -Synchronous messenger sends messages in sequence while asychronous messenger sends messages in parallel. +Synchronous messenger sends messages in sequence on the same thread the `SendSyncMessage` is called while asychronous messenger sends messages in sequence on a different thread than the one called `SendAsyncMessage`.