Skip to content

Commit be3cdb0

Browse files
Merge pull request #285242 from linglingye001/user/linglingye/fixExample
Fix config
2 parents 4285496 + 7d63d5d commit be3cdb0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-app-configuration/quickstart-javascript-provider.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ async function run() {
134134
const config = settings.constructConfigurationObject({ separator: "." });
135135
// Use dot-notation to access configuration
136136
console.log("config.message:", config.message); // config.message: undefined
137-
console.log("config.app.greeting:", config.greeting); // config.app.greeting: Hello World
138-
console.log("config.app.json:", config.json); // config.app.json: { myKey: 'myValue' }
137+
console.log("config.app.greeting:", config.app.greeting); // config.app.greeting: Hello World
138+
console.log("config.app.json:", config.app.json); // config.app.json: { myKey: 'myValue' }
139139
}
140140

141141
run().catch(console.error);

0 commit comments

Comments
 (0)