Skip to content

Commit 1831826

Browse files
authored
Merge pull request #103309 from moslem-hadi/patch-1
Fix typo in code snippet
2 parents 105860a + 15f63e2 commit 1831826

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/service-bus-messaging/service-bus-dotnet-how-to-use-topics-subscriptions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ In this section, you'll add code to retrieve messages from the subscription.
449449
//
450450
// Create the clients that we'll use for sending and processing messages.
451451
// TODO: Replace the <NAMESPACE-CONNECTION-STRING> placeholder
452-
client = new ServiceBusClient("<NAMESPACE-CONNECTION-STRING>">);
452+
client = new ServiceBusClient("<NAMESPACE-CONNECTION-STRING>");
453453
454454
// create a processor that we can use to process the messages
455455
// TODO: Replace the <TOPIC-NAME> and <SUBSCRIPTION-NAME> placeholders
@@ -596,7 +596,7 @@ In this section, you'll add code to retrieve messages from the subscription.
596596
//
597597
// Create the clients that we'll use for sending and processing messages.
598598
// TODO: Replace the <NAMESPACE-CONNECTION-STRING> placeholder
599-
client = new ServiceBusClient("<NAMESPACE-CONNECTION-STRING>">);
599+
client = new ServiceBusClient("<NAMESPACE-CONNECTION-STRING>");
600600
601601
// create a processor that we can use to process the messages
602602
// TODO: Replace the <TOPIC-NAME> and <SUBSCRIPTION-NAME> placeholders

0 commit comments

Comments
 (0)