Skip to content

Commit 079786d

Browse files
authored
Clean up superfluous semicolon in code snippets
1 parent d9f02a6 commit 079786d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

articles/active-directory-b2c/enable-authentication-angular-spa-app-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ if (this.msalGuardConfig.authRequest) {
411411
authRequestConfig = { ...this.msalGuardConfig.authRequest } as RedirectRequest
412412
}
413413

414-
authRequestConfig.extraQueryParameters = {"id_token_hint": idToken};;
414+
authRequestConfig.extraQueryParameters = {"id_token_hint": idToken};
415415

416416
this.authService.loginRedirect(authRequestConfig);
417417

articles/azure-relay/includes/relay-hybrid-connections-node-get-started-client.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Run `npm install hyco-ws` from a Node command prompt in your project folder.
2323
.createInterface({
2424
input: process.stdin,
2525
output: process.stdout
26-
});;
26+
});
2727
```
2828
2. Add the following constants to the `sender.js` file for the hybrid connection details. Replace the placeholders in brackets with the values you obtained when you created the hybrid connection.
2929

@@ -59,7 +59,7 @@ Run `npm install hyco-ws` from a Node command prompt in your project folder.
5959
.createInterface({
6060
input: process.stdin,
6161
output: process.stdout
62-
});;
62+
});
6363
6464
const ns = "{RelayNamespace}";
6565
const path = "{HybridConnectionName}";

articles/remote-rendering/overview/features/cut-planes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void CreateCutPlane(RenderingSession session, Entity ownerEntity)
3232
```cpp
3333
void CreateCutPlane(ApiHandle<RenderingSession> session, ApiHandle<Entity> ownerEntity)
3434
{
35-
ApiHandle<CutPlaneComponent> cutPlane = session->Connection()->CreateComponent(ObjectType::CutPlaneComponent, ownerEntity)->as<CutPlaneComponent>();;
35+
ApiHandle<CutPlaneComponent> cutPlane = session->Connection()->CreateComponent(ObjectType::CutPlaneComponent, ownerEntity)->as<CutPlaneComponent>();
3636
cutPlane->SetNormal(Axis::X); // normal points along the positive x-axis of the owner object's orientation
3737
Color4Ub fadeColor;
3838
fadeColor.channels = { 255, 0, 0, 128 }; // fade to 50% red
@@ -95,4 +95,4 @@ Each active cut plane incurs a small cost during rendering. Disable or delete cu
9595
## Next steps
9696
9797
* [Single sided rendering](single-sided-rendering.md)
98-
* [Spatial queries](spatial-queries.md)
98+
* [Spatial queries](spatial-queries.md)

articles/service-bus-messaging/build-message-driven-apps-nservicebus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public class SenderWorker : BackgroundService
140140
var round = 0;
141141
while (!stoppingToken.IsCancellationRequested)
142142
{
143-
await messageSession.Send(new Ping { Round = round++ });;
143+
await messageSession.Send(new Ping { Round = round++ });
144144

145145
logger.LogInformation($"Message #{round}");
146146

articles/service-bus-messaging/jms-developer-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ TokenCredential tokenCredential = new ClientSecretCredentialBuilder()
114114
                .tenantId("")
115115
                .clientId("")
116116
                .clientSecret("")
117-
                .build();;
117+
                .build();
118118
```
119119

120120
The Connection factory can then be instantiated with the below parameters.

0 commit comments

Comments
 (0)