Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/introduction/from-mediatr.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ which is just not suitable if you need delivery guarantees of that work. Wolveri
with its in memory, local queues such that work will *not* be lost in the case of errors. Moreover, using the Wolverine local queues
allows you to take advantage of Wolverine's error handling capabilities for a much more resilient system that you'll achieve with MediatR.

`INotificationHandler` in Wolverine is just a message handler. You can publish messages anytime through the `IMessageBus.PublishAsync()` API, but if you're just
The equivalent of `INotificationHandler` in Wolverine is just a message handler. You can publish messages anytime through the `IMessageBus.PublishAsync()` API, but if you're just
needing to publish additional messages (either commands or events, to Wolverine it's all just a message), you can utilize Wolverine's
[cascading message](/guide/handlers/cascading) usage as a way of building more testable handler methods.

Expand Down