Skip to content

Commit e5e21dd

Browse files
small fix
1 parent 152a16c commit e5e21dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/quickstart-feature-flag-aspnet-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
126126
{
127127
var settings = config.Build();
128128
config.AddAzureAppConfiguration(settings["ConnectionStrings:AppConfig"])
129-
.UseFeatureFlags();;
129+
.UseFeatureFlags();
130130
})
131131
.UseStartup<Startup>();
132132
```
@@ -141,7 +141,7 @@ Add the [Secret Manager tool](https://docs.microsoft.com/aspnet/core/security/ap
141141
{
142142
var settings = config.Build();
143143
config.AddAzureAppConfiguration(settings["ConnectionStrings:AppConfig"])
144-
.UseFeatureFlags();;
144+
.UseFeatureFlags();
145145
})
146146
.UseStartup<Startup>());
147147
```

0 commit comments

Comments
 (0)