diff --git a/site/src/main/tut/publishers/publisher-with-listener.md b/site/src/main/tut/publishers/publisher-with-listener.md index e90ab4ee..86cd6b33 100644 --- a/site/src/main/tut/publishers/publisher-with-listener.md +++ b/site/src/main/tut/publishers/publisher-with-listener.md @@ -18,7 +18,7 @@ The server SHOULD implement the mandatory flag. ### Creating a Publisher with Listener -It is simply created by specifying `ExchangeName`, `RoutingKey`, `PublishingFlag` and a listener, i.e. a function from `PublishReturn` to `F[Unit]`. In addition, you need to pass in a `cats.effect.Blocker` since publishing are blocking actions in the underlying Java client: +It is simply created by specifying `ExchangeName`, `RoutingKey`, `PublishingFlag` and a listener, i.e. a function from `PublishReturn` to `F[Unit]`: ```tut:book:silent import cats.effect._