Skip to content

Commit ae0d27d

Browse files
committed
Follow Acrolinx to improve clarity
1 parent e31f912 commit ae0d27d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-javascript.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use dynamic configuration in JavaScript
33
titleSuffix: Azure App Configuration
4-
description: Learn how to dynamically update configuration data for JavaScript
4+
description: Learn how to dynamically update configuration data for JavaScript.
55
services: azure-app-configuration
66
author: eskibear
77
ms.service: azure-app-configuration
@@ -44,9 +44,9 @@ Add the following key-value to your Azure App Configuration store. For more info
4444

4545
The following examples show how to use refreshable configuration values in console applications.
4646
The refresh behavior is configured by `refreshOptions` parameter when calling `load` function.
47-
The loaded configuration will be updated when a change is detected on the server.
47+
The loaded configuration is updated when a change is detected on the server.
4848

49-
1. Open the file *app.js*, update the `run()` function to call the `load` function with `refreshOptions` specified.
49+
1. Open the file *app.js* and update the `load` function with `refreshOptions` specified.
5050

5151
### [Use configuration as Map](#tab/configurtion-map)
5252

@@ -114,7 +114,7 @@ The loaded configuration will be updated when a change is detected on the server
114114

115115
---
116116

117-
1. Now the file *app.js* should look like the following:
117+
1. Now the file *app.js* should look like the following code snippet:
118118

119119
### [Use configuration as Map](#tab/configurtion-map)
120120

@@ -205,7 +205,7 @@ The loaded configuration will be updated when a change is detected on the server
205205
| *message* | *Hello World - Updated!* | Leave empty | Leave empty |
206206
| *sentinel* | *2* | Leave empty | Leave empty |
207207

208-
1. Once the values have been updated the updated value will print out when the refresh interval has passed.
208+
1. Once the values are updated, the updated value is printed after the refresh interval.
209209

210210
```console
211211
Hello World - Updated!

0 commit comments

Comments
 (0)