Skip to content

Commit 2207340

Browse files
authored
Apply suggestions from code review
Corrected Acrolinx terminology issues
1 parent 635d608 commit 2207340

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-signalr/signalr-howto-scale-multi-instances.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ The object you get from `SignalRNegotiation` binding is in the following format:
374374
}
375375
```
376376

377-
Here's a Javascript usage sample of `SignalRNegotiation` binding:
377+
Here's a JavaScript usage sample of `SignalRNegotiation` binding:
378378
```js
379379
module.exports = function (context, req, negotiationContext) {
380380
var userId = req.query.userId;
@@ -414,7 +414,7 @@ The object you get from `SignalREndpoints` is an array of endpoints each of whic
414414
```
415415

416416

417-
After you get the target endpoint array, add an `endpoints` property to the output binding object. This is a Javascript example:
417+
After you get the target endpoint array, add an `endpoints` property to the output binding object. This is a JavaScript example:
418418
```js
419419
module.exports = function (context, req, endpoints) {
420420
var targetEndpoints = endpoints.filter(endpoint => endpoint.name.startsWith("east-"));

0 commit comments

Comments
 (0)