Skip to content

Commit 0be9ba9

Browse files
committed
fix code errors
1 parent 68c66e8 commit 0be9ba9

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Ensure you're running the latest version of the CLI via the upgrade command.
5858
az upgrade
5959
```
6060

61-
Next, install or update the Azure Web PubSub extension for the CLI.
61+
Next, install or update the Azure Web PubSub extension for the CLI if it wasn't installed with `az upgrade`.
6262

6363
```azurecli
6464
az extension add --name webpubsub --upgrade
@@ -79,7 +79,7 @@ WEB_PUBSUB_NAME="<your-unique-name>"
7979
```azurepowershell
8080
$ResourceGroupName = 'webpubsub-resource-group'
8181
$Location = 'EastUS'
82-
$WebPubSubName = `<YourUniqueName>`
82+
$WebPubSubName = '<YourUniqueName>'
8383
```
8484

8585
---
@@ -123,7 +123,7 @@ az webpubsub create `
123123
--name $WebPubSubName `
124124
--location $Location `
125125
--resource-group $ResourceGroupName `
126-
--sku Free_F1 `
126+
--sku Free_F1
127127
```
128128

129129
---
@@ -187,7 +187,8 @@ You'll use the Azure Web PubSub SDK to publish a message to all the clients conn
187187

188188
### Set up the project to publish messages
189189

190-
Select the language for your project. The dependencies for each language are installed in the steps for that language.
190+
ou will need to open a new command shell for this project.
191+
Now, select the language for your project. Note that the dependencies for each language are installed in the steps for that language.
191192

192193
# [C#](#tab/csharp)
193194

@@ -276,7 +277,7 @@ Select the language for your project. The dependencies for each language are in
276277
1. Run the following command to publish a message to the service:
277278
278279
```bash
279-
export WebPubSubConnectionString=$connection-string
280+
export WebPubSubConnectionString=$connection_string
280281
node publish "Hello World"
281282
```
282283

0 commit comments

Comments
 (0)