Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit a87efde

Browse files
davidfowlReubenBond
authored andcommitted
Small nit
1 parent 52cdd16 commit a87efde

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Web/WebMVC/Extensions/Extensions.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public static void AddHttpClientServices(this IServiceCollection services)
2929
{
3030
// Register delegating handlers
3131
services.AddTransient<HttpClientAuthorizationDelegatingHandler>()
32-
.AddTransient<HttpClientRequestIdDelegatingHandler>();
32+
.AddTransient<HttpClientRequestIdDelegatingHandler>();
3333

3434
// Add http client services
3535
services.AddHttpClient<IBasketService, BasketService>()
@@ -42,8 +42,7 @@ public static void AddHttpClientServices(this IServiceCollection services)
4242
.AddHttpMessageHandler<HttpClientAuthorizationDelegatingHandler>()
4343
.AddHttpMessageHandler<HttpClientRequestIdDelegatingHandler>();
4444

45-
46-
//add custom application services
45+
// Add custom application services
4746
services.AddTransient<IIdentityParser<ApplicationUser>, IdentityParser>();
4847
}
4948

0 commit comments

Comments
 (0)