Skip to content

Commit 3da8276

Browse files
fix NIT
1 parent 55c7223 commit 3da8276

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-app-configuration/howto-targetingfilter-aspnet-core.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ In this section, you will create a web application that allows users to sign in
6767
options.UseFeatureFlags();
6868
});
6969
70-
// Add Azure App Configuration middleware to the container of services.
70+
// Add Azure App Configuration middleware to the container of services
7171
builder.Services.AddAzureAppConfiguration();
7272
73-
// Add feature management to the container of services.
73+
// Add feature management to the container of services
7474
builder.Services.AddFeatureManagement();
7575
7676
// The rest of existing code in Program.cs
@@ -83,7 +83,7 @@ In this section, you will create a web application that allows users to sign in
8383
8484
var app = builder.Build();
8585
86-
// Use Azure App Configuration middleware for dynamic configuration refresh.
86+
// Use Azure App Configuration middleware for dynamic configuration refresh
8787
app.UseAzureAppConfiguration();
8888
8989
// The rest of existing code in Program.cs
@@ -201,7 +201,7 @@ At this point, you can use the feature flag to enable or disable the `Beta` feat
201201
// Existing code in Program.cs
202202
// ... ...
203203
204-
// Add feature management to the container of services.
204+
// Add feature management to the container of services
205205
builder.Services.AddFeatureManagement()
206206
.WithTargeting<ExampleTargetingContextAccessor>();
207207

0 commit comments

Comments
 (0)