Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up superfluous semicolon in code snippets #125488

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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}";
Expand Down
4 changes: 2 additions & 2 deletions articles/remote-rendering/overview/features/cut-planes.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void CreateCutPlane(RenderingSession session, Entity ownerEntity)
```cpp
void CreateCutPlane(ApiHandle<RenderingSession> session, ApiHandle<Entity> ownerEntity)
{
ApiHandle<CutPlaneComponent> cutPlane = session->Connection()->CreateComponent(ObjectType::CutPlaneComponent, ownerEntity)->as<CutPlaneComponent>();;
ApiHandle<CutPlaneComponent> cutPlane = session->Connection()->CreateComponent(ObjectType::CutPlaneComponent, ownerEntity)->as<CutPlaneComponent>();
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
Expand Down Expand Up @@ -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)
* [Spatial queries](spatial-queries.md)
Original file line number Diff line number Diff line change
Expand Up @@ -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}");

Expand Down
2 changes: 1 addition & 1 deletion articles/service-bus-messaging/jms-developer-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ TokenCredential tokenCredential = new ClientSecretCredentialBuilder()
                .tenantId("")
                .clientId("")
                .clientSecret("")
                .build();;
                .build();
```

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