Skip to content

Commit c80b5af

Browse files
improve acrolinx score
1 parent fb4e642 commit c80b5af

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-app-configuration/howto-timewindow-filter-javascript.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,17 @@ The example used in this tutorial is based on the Node.js application introduced
2626

2727
You've added a time window filter for your *Beta* feature flag in the prerequisites. Next, you'll use the feature flag with the time window filter in your Node.js application.
2828

29-
When you create a feature manager, the built-in feature filters will be automatically added to its feature filter collection.
29+
When you create a feature manager, the built-in feature filters are automatically added to its feature filter collection.
3030

3131
``` javascript
3232
const fm = new FeatureManager(ffProvider);
3333
```
3434

3535
## Time window filter in action
3636

37-
When you run the application, the configuration provider will load the *Beta* feature flag from Azure App Configuration. The result of the `isEnabled("Beta")` method will be printed to the console. If your current time is earlier than the start time set for the time window filter, the *Beta* feature flag will be disabled by the time window filter.
37+
When you run the application, the configuration provider loads the *Beta* feature flag from Azure App Configuration. The result of the `isEnabled("Beta")` method will be printed to the console. If your current time is earlier than the start time set for the time window filter, the *Beta* feature flag will be disabled by the time window filter.
3838

39-
You will see the following console outputs.
39+
You'll see the following console outputs.
4040

4141
``` bash
4242
Beta is enabled: false
@@ -49,7 +49,7 @@ Beta is enabled: false
4949

5050
Once the start time has passed, you'll notice that the *Beta* feature flag is enabled by the time window filter.
5151

52-
You will see the console outputs change as the *Beta* is enabled.
52+
You'll see the console outputs change as the *Beta* is enabled.
5353

5454
``` bash
5555
Beta is enabled: false

0 commit comments

Comments
 (0)