Skip to content

Commit 44d2326

Browse files
committed
Fix net6 tab ids
1 parent d10b800 commit 44d2326

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-web-pubsub/tutorial-build-chat.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,12 @@ You may remember in the [publish and subscribe message tutorial](./tutorial-pub-
248248
249249
2. Create a file `SampleChatHub.cs` for the `SampleChatHub` class to handle hub events with the following content.
250250
251-
```csharp
252-
using Microsoft.Azure.WebPubSub.AspNetCore;
251+
```csharp
252+
using Microsoft.Azure.WebPubSub.AspNetCore;
253253

254-
sealed class SampleChatHub : WebPubSubHub
255-
{
256-
}
254+
sealed class SampleChatHub : WebPubSubHub
255+
{
256+
}
257257
```
258258
259259
3. Then update the `Program.cs` file to add DI for the service middleware and service client inside. Don't forget to replace `<connection_string>` with the one of your services.
@@ -329,7 +329,7 @@ You may remember in the [publish and subscribe message tutorial](./tutorial-pub-
329329
</html>
330330
```
331331
332-
If you are using Chrome, you can test it by opening the home page, input your user name. Press F12 to open the Developer Tools window, switch to **Console** table and you'll see `connected` being printed in browser console.
332+
If you are using Chrome, you can test it by opening the home page, input your user name. Press F12 to open the Developer Tools window, switch to **Console** table and you'll see `connected` being printed in browser console.
333333
334334
# [JavaScript](#tab/javascript)
335335

0 commit comments

Comments
 (0)