Skip to content

Commit fbdf93a

Browse files
authored
Apply pencil edits for blocking issues from PR review
1 parent 4e80cd2 commit fbdf93a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/cosmos-db/sql/create-sql-api-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Get started with the Azure Cosmos DB client library for JavaScript to create dat
3333
3434
## Prerequisites
3535

36-
* In a terminal or command window, run ``node --version`` to check that the Node.js version one of the current long term support (LTS) versions.
36+
* In a terminal or command window, run ``node --version`` to check that the Node.js version is one of the current long term support (LTS) versions.
3737
* Run ``az --version`` (Azure CLI) or ``Get-Module -ListAvailable AzureRM`` (Azure PowerShell) to check that you have the appropriate Azure command-line tools installed.
3838

3939
## Setting up

articles/cosmos-db/sql/includes/quickstart-arm.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This quickstart will create a single Azure Cosmos DB account using the SQL API.
2323
resourceGroupName="msdocs-cosmos-quickstart-rg"
2424
location="westus"
2525
26-
# Variable for account name with a randomnly generated suffix
26+
# Variable for account name with a randomly generated suffix
2727
let suffix=$RANDOM*$RANDOM
2828
accountName="msdocs-$suffix"
2929
```
@@ -77,7 +77,7 @@ This quickstart will create a single Azure Cosmos DB account using the SQL API.
7777
$RESOURCE_GROUP_NAME = "msdocs-cosmos-quickstart-rg"
7878
$LOCATION = "West US"
7979
80-
# Variable for account name with a randomnly generated suffix
80+
# Variable for account name with a randomly generated suffix
8181
$SUFFIX = Get-Random
8282
$ACCOUNT_NAME = "msdocs-$SUFFIX"
8383
```
@@ -143,7 +143,7 @@ This quickstart will create a single Azure Cosmos DB account using the SQL API.
143143
144144
1. On the **Select API option** page, select the **Create** option within the **Core (SQL) - Recommend** section. Azure Cosmos DB has five APIs: SQL, MongoDB, Gremlin, Table, and Cassandra. [Learn more about the SQL API](../index.yml).
145145
146-
:::image type="content" source="../media/create-account-portal/cosmos-api-choices.png" lightbox="../media/create-account-portal/cosmos-api-choices.png" alt-text="Screenshot of select A P I option page for Azure Cosmos DB.":::
146+
:::image type="content" source="../media/create-account-portal/cosmos-api-choices.png" lightbox="../media/create-account-portal/cosmos-api-choices.png" alt-text="Screenshot of select API option page for Azure Cosmos DB.":::
147147
148148
1. On the **Create Azure Cosmos DB Account** page, enter the following information:
149149
@@ -159,23 +159,23 @@ This quickstart will create a single Azure Cosmos DB account using the SQL API.
159159
> [!NOTE]
160160
> You can have up to one free tier Azure Cosmos DB account per Azure subscription and must opt-in when creating the account. If you do not see the option to apply the free tier discount, this means another account in the subscription has already been enabled with free tier.
161161
162-
:::image type="content" source="../media/create-account-portal/new-cosmos-account-page.png" lightbox="../media/create-account-portal/new-cosmos-account-page.png" alt-text="Screenshot of new account page for Azure Cosmos D B SQL A P I.":::
162+
:::image type="content" source="../media/create-account-portal/new-cosmos-account-page.png" lightbox="../media/create-account-portal/new-cosmos-account-page.png" alt-text="Screenshot of new account page for Azure Cosmos DB SQL API.":::
163163
164164
1. Select **Review + create**.
165165
166166
1. Review the settings you provide, and then select **Create**. It takes a few minutes to create the account. Wait for the portal page to display **Your deployment is complete** before moving on.
167167
168168
1. Select **Go to resource** to go to the Azure Cosmos DB account page.
169169
170-
:::image type="content" source="../media/create-account-portal/cosmos-deployment-complete.png" lightbox="../media/create-account-portal/cosmos-deployment-complete.png" alt-text="Screenshot of deployment page for Azure Cosmos DB SQL A P I resource.":::
170+
:::image type="content" source="../media/create-account-portal/cosmos-deployment-complete.png" lightbox="../media/create-account-portal/cosmos-deployment-complete.png" alt-text="Screenshot of deployment page for Azure Cosmos DB SQL API resource.":::
171171
172172
1. From the Azure Cosmos DB SQL API account page, select the **Keys** navigation menu option.
173173
174-
:::image type="content" source="../media/get-credentials-portal/cosmos-keys-option.png" lightbox="../media/get-credentials-portal/cosmos-keys-option.png" alt-text="Screenshot of an Azure Cosmos DB SQL A P I account page. The Keys option is highlighted in the navigation menu.":::
174+
:::image type="content" source="../media/get-credentials-portal/cosmos-keys-option.png" lightbox="../media/get-credentials-portal/cosmos-keys-option.png" alt-text="Screenshot of an Azure Cosmos DB SQL API account page. The Keys option is highlighted in the navigation menu.":::
175175
176176
1. Record the values from the **URI** and **PRIMARY KEY** fields. You'll use these values in a later step.
177177
178-
:::image type="content" source="../media/get-credentials-portal/cosmos-endpoint-key-credentials.png" lightbox="../media/get-credentials-portal/cosmos-endpoint-key-credentials.png" alt-text="Screenshot of Keys page with various credentials for an Azure Cosmos DB SQL A P I account.":::
178+
:::image type="content" source="../media/get-credentials-portal/cosmos-endpoint-key-credentials.png" lightbox="../media/get-credentials-portal/cosmos-endpoint-key-credentials.png" alt-text="Screenshot of Keys page with various credentials for an Azure Cosmos DB SQL API account.":::
179179
180180
#### [Resource Manager template](#tab/azure-resource-manager)
181181
@@ -191,7 +191,7 @@ This quickstart will create a single Azure Cosmos DB account using the SQL API.
191191
# Variable for location
192192
location="westus"
193193
194-
# Variable for account name with a randomnly generated suffix
194+
# Variable for account name with a randomly generated suffix
195195
let suffix=$RANDOM*$RANDOM
196196
accountName="msdocs-$suffix"
197197
```

0 commit comments

Comments
 (0)