Skip to content

Commit b2d9162

Browse files
committed
Improving acrolinx score more
1 parent 934ac13 commit b2d9162

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/azure-app-configuration/use-variant-feature-flags-aspnet-core.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this tutorial, you use a variant feature flag to manage experiences for diffe
3232
dotnet new razor --auth Individual -o QuoteOfTheDay
3333
```
3434
35-
1. Navigate to the *QuoteOfTheDay* folder and run the following command to create a [user secret](/aspnet/core/security/app-secrets) for the application. This secret holds the endpoint for App Configuration.
35+
1. Create a [user secret](/aspnet/core/security/app-secrets) for the application by navigating into the *QuoteOfTheDay* folder and run the following command. This secret holds the endpoint for your App Configuration.
3636
3737
```dotnetcli
3838
dotnet user-secrets set Endpoints:AppConfiguration "<App Configuration Endpoint>"

articles/azure-app-configuration/use-variant-feature-flags.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Variant feature flags have two variant defaults, **DefaultWhenEnabled** and **De
5151
1. The **DefaultWhenEnabled** variant takes effect if the flag is enabled but the allocation does assign all percentiles. Any user placed in an unassigned percentile receives the **DefaultWhenEnabled** variant.
5252
1. The **DefaultWhenDisabled** variant takes effect if the flag is disabled, done by setting the **Enabled** field to false, also known as using the "kill switch".
5353

54-
The **kill switch** is used to stop users from allocating. Usually it's used when one or more of the variants have a problem- whether it's a bug, regression, or bad performance. To use the kill switch, set the **Enabled** field of the variant flag to false. Regardless which percentiles users were a part of, all users now are given the **DefaultWhenDisabled** variant.
54+
The **kill switch** is used to stop users from allocating. Used when one or more of the variants have a problem- whether it's a bug, regression, or bad performance. To use the kill switch, set the **Enabled** field of the variant flag to false. All users now are given the **DefaultWhenDisabled** variant, regardless of which percentiles they were a part of.
5555

5656
## Build an app with a variant feature flag
5757

0 commit comments

Comments
 (0)