From 266be660b1202ae0eb9bcf2b4d95148f1e35ff75 Mon Sep 17 00:00:00 2001 From: Stephen Clarke Date: Tue, 25 Jul 2023 14:29:59 +0100 Subject: [PATCH] Update subscription-methods.md Add missing `);` to the UseEndpoints .net example Signed-off-by: Stephen Clarke --- .../building-blocks/pubsub/subscription-methods.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/pubsub/subscription-methods.md b/daprdocs/content/en/developing-applications/building-blocks/pubsub/subscription-methods.md index dce9cbd9a14..5b760ef6ee8 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/pubsub/subscription-methods.md +++ b/daprdocs/content/en/developing-applications/building-blocks/pubsub/subscription-methods.md @@ -223,7 +223,7 @@ Both of the handlers defined above also need to be mapped to configure the `dapr app.UseEndpoints(endpoints => { endpoints.MapSubscribeHandler(); -} +}); ``` {{% /codetab %}}