Skip to content

Commit c174dd0

Browse files
committed
Fix typo
1 parent bfe48ad commit c174dd0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The loaded configuration is updated when a change is detected on the server.
4545

4646
1. Open the file *app.js* and update the `load` function with `refreshOptions` specified.
4747

48-
### [Use configuration as Map](#tab/configurtion-map)
48+
### [Use configuration as Map](#tab/configuration-map)
4949

5050
```javascript
5151
// Connecting to Azure App Configuration using connection string
@@ -59,7 +59,7 @@ The loaded configuration is updated when a change is detected on the server.
5959
});
6060
```
6161

62-
### [Use configuration as object](#tab/configurtion-object)
62+
### [Use configuration as object](#tab/configuration-object)
6363

6464
The configuration object is constructed by calling `constructConfigurationObject` function.
6565
So you need to add a callback to ensure the object is also updated after a refresh.
@@ -98,12 +98,12 @@ The loaded configuration is updated when a change is detected on the server.
9898

9999
1. At the end of the while loop, add the following line to print the value after each refresh call.
100100

101-
### [Use configuration as Map](#tab/configurtion-map)
101+
### [Use configuration as Map](#tab/configuration-map)
102102

103103
```javascript
104104
console.log(settings.get("message")); // Consume current value of message from a Map
105105
```
106-
### [Use configuration as object](#tab/configurtion-object)
106+
### [Use configuration as object](#tab/configuration-object)
107107

108108
```javascript
109109
console.log(config.message); // Consume current value of message from an object
@@ -113,7 +113,7 @@ The loaded configuration is updated when a change is detected on the server.
113113

114114
1. Now the file *app.js* should look like the following code snippet:
115115

116-
### [Use configuration as Map](#tab/configurtion-map)
116+
### [Use configuration as Map](#tab/configuration-map)
117117

118118
```javascript
119119
const sleepInMs = require("util").promisify(setTimeout);
@@ -141,7 +141,7 @@ The loaded configuration is updated when a change is detected on the server.
141141
142142
run().catch(console.error);
143143
```
144-
### [Use configuration as object](#tab/configurtion-object)
144+
### [Use configuration as object](#tab/configuration-object)
145145

146146
```javascript
147147
const sleepInMs = require("util").promisify(setTimeout);

0 commit comments

Comments
 (0)