Skip to content

Commit cabce08

Browse files
committed
update
1 parent 71e4c5c commit cabce08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-app-configuration/howto-feature-filters-go.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Feature flags can use feature filters to enable features conditionally. To learn
1717

1818
The example used in this guide is based on the Go Gin web application introduced in the feature management [quickstart](./quickstart-feature-flag-go-gin.md). Before proceeding further, complete the quickstart to create a Go Gin web application with a *Beta* feature flag. Once completed, you must [add a custom feature filter](./howto-feature-filters.md) to the *Beta* feature flag in your App Configuration store.
1919

20-
In this guide, you'll learn how to implement a custom feature filter and use the feature filter to enable features conditionally.
20+
In this guide, you learn how to implement a custom feature filter and use the feature filter to enable features conditionally.
2121

2222
## Prerequisites
2323

@@ -27,7 +27,7 @@ In this guide, you'll learn how to implement a custom feature filter and use the
2727

2828
## Implement a custom feature filter
2929

30-
You've added a custom feature filter named **Random** with a **Percentage** parameter for your *Beta* feature flag in the prerequisites. Next, you'll implement the feature filter to enable the *Beta* feature flag based on the chance defined by the **Percentage** parameter.
30+
You added a custom feature filter named **Random** with a **Percentage** parameter for your *Beta* feature flag in the prerequisites. Next, you'll implement the feature filter to enable the *Beta* feature flag based on the chance defined by the **Percentage** parameter.
3131

3232
1. Create a `random_filter.go` file with the following code:
3333

@@ -103,7 +103,7 @@ You've added a custom feature filter named **Random** with a **Percentage** para
103103

104104
## Feature filter in action
105105

106-
Relaunch the application and refresh the browser a few times. Without manually toggling the feature flag, you will see that the **Beta** menu sometimes appears and sometimes doesn't.
106+
Relaunch the application and refresh the browser a few times. Without manually toggling the feature flag, the **Beta** menu appears randomly based on the percentage you set.
107107

108108
:::image type="content" source="./media/quickstarts/gin-app-feature-flag-before.png" alt-text="Screenshot of Gin web app with Beta menu hidden.":::
109109

0 commit comments

Comments
 (0)