Skip to content

Commit 222e930

Browse files
authored
Merge pull request #125015 from ArieHein/Spelling-Wave-12
Spelling Fixes - Wave 12
2 parents 71fed23 + 89ace94 commit 222e930

16 files changed

+20
-20
lines changed

articles/azure-web-pubsub/howto-configure-application-firewall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The application firewall rules only take effect when the access token contains t
102102
Below is an example to add userId and insert a unique placeholder in the access token:
103103

104104
```cs
105-
// The GUID role wont have any effect. But it esures this token's uniqueness when using rule ThrottleByJwtSignatureRule.
105+
// The GUID role wont have any effect. But it ensures this token's uniqueness when using rule ThrottleByJwtSignatureRule.
106106
var url = service.GetClientAccessUri((userId: "user1" , roles: new string[] { "webpubsub.joinLeaveGroup.group1", Guid.NewGuid().ToString()});
107107
```
108108

articles/azure-web-pubsub/howto-enable-geo-replication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Contoso **could** set up another Web PubSub resource in Canada Central which is
3535

3636
All of the above takes engineering resources away from focusing on product innovation.
3737

38-
![Diagram of using two Azure Web PubSub instances to handle traffic from two countries. ](./media/howto-enable-geo-replication/web-pubsub-multiple.png "Mutiple Web PubSub Example")
38+
![Diagram of using two Azure Web PubSub instances to handle traffic from two countries. ](./media/howto-enable-geo-replication/web-pubsub-multiple.png "Multiple Web PubSub Example")
3939

4040
### Harnessing the geo-replication feature
4141
With the geo-replication feature, Contoso can now establish a replica in Canada Central, effectively overcoming the above-mentioned challenges. The developer team is glad to find out that they don't need to make any code changes. It's as easy as clicking a few buttons on Azure portal. The developer team is also happy to share with the stakeholders that as Contoso plans to enter the European market, they simply need to add another replica in Europe.

articles/azure-web-pubsub/howto-generate-client-access-url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ You could also use Microsoft Entra ID and generate the token by invoking [Genera
270270
We use [CURL](https://curl.se/) tool to show how to invoke the REST APIs. The tool is bundled into Windows 10/11, and you could install the tool following [Install CURL](https://curl.se/download.html).
271271

272272
```bash
273-
# set neccessory values, replace the placeholders with your actual values
273+
# set necessary values, replace the placeholders with your actual values
274274
export TenantId=<your_tenant_id>
275275
export ClientId=<your_client_id>
276276
export ClientSecret=<your_client_secret>

articles/azure-web-pubsub/howto-integrate-app-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ app.get("/negotiate", async (req, res) => {
136136
url
137137
})
138138
}
139-
// Every 2 seconds, we ask Web PubSub service to send all connected clients the messsage "hello, world"
139+
// Every 2 seconds, we ask Web PubSub service to send all connected clients the message "hello, world"
140140
setInterval(() => {
141141
webpubsub.sendToAll("hello, world", { contentType: "text/plain" });
142142
}, 2000);
@@ -230,7 +230,7 @@ app.get("/negotiate", async (req, res) => {
230230
231231
Find the public IP of your Application Gateway resource and set the environment variable.
232232
```bash
233-
export appGatewayEndpoint="<replace with the public IP of your Applciation Gateway resource>"
233+
export appGatewayEndpoint="<replace with the public IP of your Application Gateway resource>"
234234
```
235235
236236
Three points to note.

articles/azure-web-pubsub/howto-integrate-app-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ git clone https://github.com/Azure/awps-webapp-sample.git
120120
## Configure upstream server to handle events coming from Web PubSub
121121
Whenever a client sends a message to Web PubSub service, the service sends an HTTP request to an endpoint you specify. This mechanism is what your backend server uses to further process messages, for example, if you can persist messages in a database of choice.
122122

123-
As is with HTTP requests, Web PubSub service needs to know where to locate your application server. Since the backend application is now deployed to App Service, we get a publically accessible domain name for it.
123+
As is with HTTP requests, Web PubSub service needs to know where to locate your application server. Since the backend application is now deployed to App Service, we get a publicly accessible domain name for it.
124124
1. Show and store the value of `name` somewhere.
125125
```azurecli-interactive
126126
az webapp config hostname list \

articles/azure-web-pubsub/howto-scale-manual-scale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The scale settings take a few minutes to apply. In rare cases, it may take aroun
1919
For information about the pricing and capacities of individual Web PubSub Service, see [Azure Web PubSub Service Pricing Details](https://azure.microsoft.com/pricing/details/web-pubsub/).
2020

2121
> [!NOTE]
22-
> Changing Web PubSub Service from **Free** tier to **Standard** or **Premium** tier or vice versa, the public service IP will be changed and it usually takes 30-60 minutes to propagate the change to DNS servers across the entire internet. Chaning tiers between **Standard** and **Premium** will not change the public IP.
22+
> Changing Web PubSub Service from **Free** tier to **Standard** or **Premium** tier or vice versa, the public service IP will be changed and it usually takes 30-60 minutes to propagate the change to DNS servers across the entire internet. Changing tiers between **Standard** and **Premium** will not change the public IP.
2323
> Your service might be unreachable before DNS gets updated. Generally it’s not recommended to change your pricing tier too often.
2424
2525

articles/azure-web-pubsub/howto-web-pubsub-tunnel-tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ SET WebPubSubConnectionString=<your connection string>
111111
npm start
112112
```
113113

114-
1. Now switch to **Client** tab, select `Connect` to start a test WebSocket connection to the Azure Web PubSub service. You would see the traffic goes through Web PubSub to Local Tunnel and finally reaches the upstream server. The tunnel tab provides the details of the request and responses, providing you with a vivid view of what is requesting your upstream server and what is reponding from the upstream server.
114+
1. Now switch to **Client** tab, select `Connect` to start a test WebSocket connection to the Azure Web PubSub service. You would see the traffic goes through Web PubSub to Local Tunnel and finally reaches the upstream server. The tunnel tab provides the details of the request and responses, providing you with a vivid view of what is requesting your upstream server and what is responding from the upstream server.
115115

116116
:::image type="content" alt-text="Screenshot of starting the test WebSocket connection and send message." source="media\howto-web-pubsub-tunnel-tool\overview-client.png" :::
117117

articles/azure-web-pubsub/quickstarts-push-messages-from-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ dotnet run $connection_string "myHub1" "Hello World"
455455

456456
```text
457457
# On the command shell used for running the "subscribe" program, you should see the received the messaged logged there.
458-
# Try running the same "subscribe" program in multiple command shells, which simluates more than clients.
458+
# Try running the same "subscribe" program in multiple command shells, which simulates more than clients.
459459
# Try running the "publish" program several times and you see messages being delivered in real-time to all these clients.
460460
Message received: Hello World
461461
```

articles/azure-web-pubsub/reference-client-sdk-javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ A client uses `Client Access URL` to connect and authenticate with the service,
4343
As shown in the diagram, the client has the permissions to send messages to and join a specific group named **`group1`**.
4444

4545
```js
46-
// Imports the client libray
46+
// Imports the client library
4747
const { WebPubSubClient } = require("@azure/web-pubsub-client");
4848

4949
// Instantiates the client object

articles/azure-web-pubsub/socket-io-howto-integrate-web-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Run the following command to get a copy of the application code.
9090
# bash
9191
zip -r app.zip *
9292

93-
# Poweshell
93+
# Powershell
9494
```
9595

9696
1. Compress into a zip

0 commit comments

Comments
 (0)