From 74891f8025e3736eddcaf31ab0d959cf7b37e185 Mon Sep 17 00:00:00 2001 From: Donovan Brown Date: Mon, 21 Jun 2021 08:25:17 -0500 Subject: [PATCH] Update publish-subscribe.md Corrected typo in the IEventBus interface. --- docs/architecture/dapr-for-net-developers/publish-subscribe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/dapr-for-net-developers/publish-subscribe.md b/docs/architecture/dapr-for-net-developers/publish-subscribe.md index 4748a8e27ee22..59085ba94c519 100644 --- a/docs/architecture/dapr-for-net-developers/publish-subscribe.md +++ b/docs/architecture/dapr-for-net-developers/publish-subscribe.md @@ -302,7 +302,7 @@ public interface IEventBus void Publish(IntegrationEvent integrationEvent); void Subscribe() - where TEvent : IntegrationEvent + where T : IntegrationEvent where THandler : IIntegrationEventHandler; } ```