Skip to content

Commit 0d7f40a

Browse files
committed
Alignment of TODO comments
1 parent 6acfd10 commit 0d7f40a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/service-bus-messaging/service-bus-migrate-azure-credentials.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Next, update your code to use passwordless connections.
118118
1. Identify the code that creates a `ServiceBusClient` object to connect to Azure Service Bus. Update your code to match the following example:
119119

120120
```csharp
121-
//TODO: Replace the <SERVICE-BUS-NAMESPACE-NAME> placeholder.
121+
// TODO: Replace the <SERVICE-BUS-NAMESPACE-NAME> placeholder.
122122
var client = new ServiceBusClient(
123123
"<SERVICE-BUS-NAMESPACE-NAME>.servicebus.windows.net",
124124
new DefaultAzureCredential());
@@ -154,7 +154,7 @@ Next, update your code to use passwordless connections.
154154
DefaultAzureCredential credential = new DefaultAzureCredentialBuilder()
155155
.build();
156156

157-
//TODO: Replace the <SERVICE-BUS-NAMESPACE-NAME> placeholder.
157+
// TODO: Replace the <SERVICE-BUS-NAMESPACE-NAME> placeholder.
158158
ConnectionFactory factory = new ServiceBusJmsConnectionFactory(
159159
credential,
160160
"<SERVICE-BUS-NAMESPACE-NAME>.servicebus.windows.net",

0 commit comments

Comments
 (0)