Skip to content

Commit 53edbbc

Browse files
Merge pull request #226164 from cebundy/wps-fix-quickstart
[Web PubSub] quickstart-use-sdk: fix connection_string name and punctuation
2 parents d062f23 + 3d0edc8 commit 53edbbc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-web-pubsub/quickstart-use-sdk.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Azure Web PubSub helps you manage WebSocket clients. This quickstart shows you h
1818
## Prerequisites
1919

2020
- An Azure subscription, if you don't have one, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
21-
- a Bash and PowerShell command shell. The Python, Javascript and Java samples require a Bash command shell.
21+
- a Bash and PowerShell command shell. The Python, JavaScript and Java samples require a Bash command shell.
2222
- A file editor such as VSCode.
2323
- Azure CLI: [install the Azure CLI](/cli/azure/install-azure-cli)
2424

@@ -48,7 +48,7 @@ Install both the .NET Core SDK and the `aspnetcore` and dotnet runtime.
4848

4949
## 1. Setup
5050

51-
To sign in to Azure from the CLI, run the following command and follow the prompts to complete the authentication process. If you are using Cloud Shell it is not necessary to sign in.
51+
To sign in to Azure from the CLI, run the following command and follow the prompts to complete the authentication process. If you're using Cloud Shell, it isn't necessary to sign in.
5252

5353
```azurecli
5454
az login
@@ -190,17 +190,17 @@ The connection to the Web PubSub service is established when you see a JSON mess
190190
## 4. Publish messages using service SDK
191191

192192
You'll use the Azure Web PubSub SDK to publish a message to all the clients connected to the hub.
193-
You can choose between C#, JavaScript, Python and Java. The dependencies for each language are installed in the steps for that language. Note that Python, JavaScript and Java require a bash shell to run the commands in this quickstart.
193+
You can choose between C#, JavaScript, Python and Java. The dependencies for each language are installed in the steps for that language. Python, JavaScript and Java require a bash shell to run the commands in this quickstart.
194194

195195
### Set up the project to publish messages
196196

197197
1. Open a new command shell for this project.
198-
1. Save the connection string from the client shell:
198+
1. Save the connection string from the client shell. Replace the `<your_connection_string>` placeholder with the connection string you displayed in an earlier step.
199199

200200
# [Bash](#tab/bash)
201201

202202
```azurecli
203-
Connection_String="<your_connection_string>"
203+
connection_string="<your_connection_string>"
204204
```
205205
206206
# [Azure PowerShell](#tab/azure-powershell)

0 commit comments

Comments
 (0)