diff --git a/articles/active-directory-b2c/enable-authentication-angular-spa-app-options.md b/articles/active-directory-b2c/enable-authentication-angular-spa-app-options.md index ba8ceb728507d..9a35b0c788c68 100644 --- a/articles/active-directory-b2c/enable-authentication-angular-spa-app-options.md +++ b/articles/active-directory-b2c/enable-authentication-angular-spa-app-options.md @@ -411,7 +411,7 @@ if (this.msalGuardConfig.authRequest) { authRequestConfig = { ...this.msalGuardConfig.authRequest } as RedirectRequest } -authRequestConfig.extraQueryParameters = {"id_token_hint": idToken};; +authRequestConfig.extraQueryParameters = {"id_token_hint": idToken}; this.authService.loginRedirect(authRequestConfig); diff --git a/articles/azure-relay/includes/relay-hybrid-connections-node-get-started-client.md b/articles/azure-relay/includes/relay-hybrid-connections-node-get-started-client.md index cad7d42a9ed5a..a7bb258afc418 100644 --- a/articles/azure-relay/includes/relay-hybrid-connections-node-get-started-client.md +++ b/articles/azure-relay/includes/relay-hybrid-connections-node-get-started-client.md @@ -23,7 +23,7 @@ Run `npm install hyco-ws` from a Node command prompt in your project folder. .createInterface({ input: process.stdin, output: process.stdout - });; + }); ``` 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. @@ -59,7 +59,7 @@ Run `npm install hyco-ws` from a Node command prompt in your project folder. .createInterface({ input: process.stdin, output: process.stdout - });; + }); const ns = "{RelayNamespace}"; const path = "{HybridConnectionName}"; diff --git a/articles/remote-rendering/overview/features/cut-planes.md b/articles/remote-rendering/overview/features/cut-planes.md index f32434434ac0c..a322464c9bb13 100644 --- a/articles/remote-rendering/overview/features/cut-planes.md +++ b/articles/remote-rendering/overview/features/cut-planes.md @@ -32,7 +32,7 @@ void CreateCutPlane(RenderingSession session, Entity ownerEntity) ```cpp void CreateCutPlane(ApiHandle session, ApiHandle ownerEntity) { - ApiHandle cutPlane = session->Connection()->CreateComponent(ObjectType::CutPlaneComponent, ownerEntity)->as();; + ApiHandle cutPlane = session->Connection()->CreateComponent(ObjectType::CutPlaneComponent, ownerEntity)->as(); cutPlane->SetNormal(Axis::X); // normal points along the positive x-axis of the owner object's orientation Color4Ub fadeColor; 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 ## Next steps * [Single sided rendering](single-sided-rendering.md) -* [Spatial queries](spatial-queries.md) \ No newline at end of file +* [Spatial queries](spatial-queries.md) diff --git a/articles/service-bus-messaging/build-message-driven-apps-nservicebus.md b/articles/service-bus-messaging/build-message-driven-apps-nservicebus.md index b12fe1a547a6f..e66a46d2c31bf 100644 --- a/articles/service-bus-messaging/build-message-driven-apps-nservicebus.md +++ b/articles/service-bus-messaging/build-message-driven-apps-nservicebus.md @@ -140,7 +140,7 @@ public class SenderWorker : BackgroundService var round = 0; while (!stoppingToken.IsCancellationRequested) { - await messageSession.Send(new Ping { Round = round++ });; + await messageSession.Send(new Ping { Round = round++ }); logger.LogInformation($"Message #{round}"); diff --git a/articles/service-bus-messaging/jms-developer-guide.md b/articles/service-bus-messaging/jms-developer-guide.md index 6bcb5dd65e781..d64a120950e70 100644 --- a/articles/service-bus-messaging/jms-developer-guide.md +++ b/articles/service-bus-messaging/jms-developer-guide.md @@ -114,7 +114,7 @@ TokenCredential tokenCredential = new ClientSecretCredentialBuilder()                 .tenantId("")                 .clientId("")                 .clientSecret("") -                .build();; +                .build(); ``` The Connection factory can then be instantiated with the below parameters.