Skip to content

Commit c6a469d

Browse files
committed
fix sample output
1 parent 9bc331b commit c6a469d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const { load } = require("@azure/app-configuration-provider");
114114
const connectionString = process.env.AZURE_APPCONFIG_CONNECTION_STRING;
115115

116116
async function run() {
117-
console.log("Sample 3: Load specific key-values using selectors");
117+
console.log("Sample 2: Load specific key-values using selectors");
118118

119119
// Load a subset of keys starting with "app." prefix.
120120
const settings = await load(connectionString, {
@@ -154,7 +154,7 @@ const { load } = require("@azure/app-configuration-provider");
154154
const connectionString = process.env.AZURE_APPCONFIG_CONNECTION_STRING;
155155

156156
async function run() {
157-
console.log("Sample 2: Load key-values and trim prefix from keys");
157+
console.log("Sample 3: Load key-values and trim prefix from keys");
158158

159159
// Load all key-values with no label, and trim "app." prefix from all keys.
160160
const settings = await load(connectionString, {
@@ -280,7 +280,7 @@ run().catch(console.error);
280280
**Sample 2**
281281
282282
```Output
283-
Sample 3: Load specific key-values using selectors
283+
Sample 2: Load specific key-values using selectors
284284
---Consume configuration as a Map---
285285
settings.has("message"): false
286286
settings.has("app.greeting"): true
@@ -294,7 +294,7 @@ run().catch(console.error);
294294
**Sample 3**
295295
296296
```Output
297-
Sample 2: Load key-values and trim prefix from keys
297+
Sample 3: Load key-values and trim prefix from keys
298298
---Consume configuration as a Map---
299299
settings.get("greeting"): Hello World
300300
settings.get("json"): { myKey: 'myValue' }

0 commit comments

Comments
 (0)