Skip to content

Commit 4f65ced

Browse files
authored
fine-tune wording
1 parent 10b2752 commit 4f65ced

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Add the following key-values to the App Configuration store. For more informatio
6868
// Find the key "message" and print its value.
6969
console.log(settings.get("message")); // Output: Message from Azure App Configuration
7070

71-
// Find the key "json" as an object, and print its property "myKey".
71+
// Find the key "app.json" as an object, and print its property "myKey".
7272
const jsonObject = settings.get("app.json");
7373
console.log(jsonObject.myKey); // Output: myValue
7474

@@ -102,7 +102,7 @@ Add the following key-values to the App Configuration store. For more informatio
102102

103103
### [Windows command prompt](#tab/windowscommandprompt)
104104

105-
To build and run the app locally using the Windows command prompt, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
105+
To run the app locally using the Windows command prompt, run the following command and replace `<app-configuration-store-connection-string>` with the connection string of your app configuration store:
106106

107107
```cmd
108108
setx AZURE_APPCONFIG_CONNECTION_STRING "app-configuration-store-connection-string"
@@ -166,7 +166,7 @@ Add the following key-values to the App Configuration store. For more informatio
166166
echo "$AZURE_APPCONFIG_CONNECTION_STRING"
167167
```
168168
169-
1. After the build successfully completes, run the following command to run the app locally:
169+
1. After the environment variable is properly set, run the following command to run the app locally:
170170
171171
```bash
172172
node app.js

0 commit comments

Comments
 (0)