Skip to content

Commit d8a808b

Browse files
authored
Clean up superfluous semicolons (#44179)
1 parent f31cf10 commit d8a808b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/architecture/maui/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ This interface specifies that an implementing class must provide the following m
5959
The `MauiNavigationService` class, which implements the `INavigationService` interface, is registered as a singleton with the dependency injection container in the `MauiProgram.CreateMauiApp()` method, as demonstrated in the following code example:
6060

6161
```csharp
62-
mauiAppBuilder.Services.AddSingleton<INavigationService, MauiNavigationService>();;
62+
mauiAppBuilder.Services.AddSingleton<INavigationService, MauiNavigationService>();
6363
```
6464

6565
The `INavigationService` interface can then be resolved by adding it to the constructor of our views and view-models, as demonstrated in the following code example:

docs/orleans/host/configuration-guide/local-development-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ using Microsoft.Extensions.Hosting;
2626
await Host.CreateDefaultBuilder(args)
2727
.UseOrleans(siloBuilder =>
2828
{
29-
siloBuilder.UseLocalhostClustering();;
29+
siloBuilder.UseLocalhostClustering();
3030
})
3131
.RunConsoleAsync();
3232
```

0 commit comments

Comments
 (0)