Skip to content

Commit d47152b

Browse files
committed
review corrections
1 parent d1d13c0 commit d47152b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ ms.custom: seo-java-august2019, seo-java-september2019
2121
> * [Python](create-sql-api-python.md)
2222
> * [Xamarin](create-sql-api-xamarin-dotnet.md)
2323
24-
In this quickstart, you create and manage an Azure Cosmos DB SQL API account from the Azure portal, and by using a Java app cloned from GitHub. Azure Cosmos DB is a multi-model database service that lets you quickly create and query document, table, key-value, and graph databases with global distribution and horizontal scale capabilities.
24+
In this quickstart, you create and manage an Azure Cosmos DB SQL API account from the Azure portal, and by using a Java app cloned from GitHub. First, you create an Azure Cosmos DB SQL API account using the Azure portal, then create a Java app using the SQL Java SDK, and then add resources to your Cosmos DB account by using the Java application. Azure Cosmos DB is a multi-model database service that lets you quickly create and query document, table, key-value, and graph databases with global distribution and horizontal scale capabilities.
2525

2626
## Prerequisites
2727

2828
- An Azure account with an active subscription. [Create one for free](https://azure.microsoft.com/free/?ref=microsoft.com&utm_source=microsoft.com&utm_medium=docs&utm_campaign=visualstudio). Or [try Azure Cosmos DB for free](https://azure.microsoft.com/try/cosmosdb/) without an Azure subscription. You can also use the [Azure Cosmos DB Emulator](https://aka.ms/cosmosdb-emulator) with a URI of `https://localhost:8081` and the key `C2y6yDjf5/R+ob0N8A7Cgv30VRDJIWEHLM+4QDU5DE2nQ9nDuVTqobD4b8mGGyPMbIZnqyMsEcaGQy67XIw/Jw==`.
2929
- [Java Development Kit (JDK) 8](https://www.azul.com/downloads/azure-only/zulu/?&version=java-8-lts&architecture=x86-64-bit&package=jdk). Point your `JAVA_HOME` environment variable to the folder where the JDK is installed.
30-
- A [Maven binary archive](https://maven.apache.org/download.cgi).
31-
- [Git](https://www.git-scm.com/downloads).
30+
- A [Maven binary archive](https://maven.apache.org/download.cgi). On Ubuntu, you can run `apt-get install maven` to install Maven.
31+
- [Git](https://www.git-scm.com/downloads). On Ubuntu, you can run `sudo apt-get install git` to install Git.
3232

3333
## Create a database account
3434

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Now let's clone a Node.js app from GitHub, set the connection string, and run it
7070

7171
This step is optional. If you're interested in learning how the Azure Cosmos database resources are created in the code, you can review the following snippets. Otherwise, you can skip ahead to [Update your connection string](#update-your-connection-string).
7272
73-
If you're familiar with the previous version of the [SQL JavaScript SDK](sql-api-sdk-node.md), you may be used to seeing the terms *collection* and *document*. Because Azure Cosmos DB supports [multiple API models](introduction.md), [version 2.0+ of the JavaScript SDK](https://www.npmjs.com/package/@azure/cosmos) uses the generic terms *container*, which may be a collection, graph, or table, and *item* to describe the content of the container.
73+
If you're familiar with the previous version of the SQL JavaScript SDK, you may be used to seeing the terms *collection* and *document*. Because Azure Cosmos DB supports [multiple API models](introduction.md), [version 2.0+ of the JavaScript SDK](https://www.npmjs.com/package/@azure/cosmos) uses the generic terms *container*, which may be a collection, graph, or table, and *item* to describe the content of the container.
7474

7575
The following snippets are all taken from the *app.js* file.
7676

@@ -124,7 +124,7 @@ The following snippets are all taken from the *app.js* file.
124124
125125
## Update your connection string
126126
127-
Now go back to the Azure portal to get the connection string details of your Azure Cosmos DB account. Copy the connection string into the app so that it can connect to your database.
127+
Now go back to the Azure portal to get the connection string details of your Azure Cosmos account. Copy the connection string into the app so that it can connect to your database.
128128
129129
1. In your Azure Cosmos DB account in the [Azure portal](https://portal.azure.com/), select **Keys** from the left navigation, and then select **Read-write Keys**. Use the copy buttons on the right side of the screen to copy the URI and Primary Key into the *config.js* file in the next step.
130130

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You can now use the Data Explorer tool in the Azure portal to create a database
6767

6868
## Clone the sample application
6969

70-
Now let's clone a [SQL API](sql-api-sdk-python.md) app from GitHub, set the connection string, and run it. This quickstart uses version 4 of the [Python SDK](https://pypi.org/project/azure-cosmos/#history).
70+
Now let's clone a SQL API app from GitHub, set the connection string, and run it. This quickstart uses version 4 of the [Python SDK](https://pypi.org/project/azure-cosmos/#history).
7171

7272
1. Open a command prompt, create a new folder named git-samples, then close the command prompt.
7373

0 commit comments

Comments
 (0)