Skip to content

Commit 1dd6160

Browse files
committed
cc feedback
1 parent 7bb5a38 commit 1dd6160

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

source/quick-start.txt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Create a MongoDB Cluster
2020

2121
.. step:: Set Up a Free Tier Cluster in Atlas
2222

23-
To set up your Atlas free cluster required for this Quick Start, complete the guidei
24-
on :guides:`MongoDB Atlas Setup </atlas/account>`.
23+
To set up your Atlas free cluster required for this Quick Start, complete the guide
24+
:guides:`MongoDB Atlas Setup </atlas/account>` guide.
2525

2626
After completing the steps in the Atlas guide, you have a new MongoDB
2727
cluster deployed in Atlas, a new database user, and
@@ -41,12 +41,13 @@ Create a MongoDB Cluster
4141

4242
Save this file to a safe location for use in the next step.
4343

44-
.. step:: Set Your Connection String
44+
.. step:: Add Your Connection String to an Environment Variable
4545

4646
Run the following code in your shell to save the MongoDB connection string
4747
in your copy buffer from the previous step to an
48-
environment variable. This method is safer than including your credentials in your source
49-
code.
48+
environment variable. Storing your connection string in an
49+
environment variable keeps your credentials separate from your source code. This
50+
separation makes it less likely to expose your credentials when sharing your code.
5051

5152
.. code-block:: bash
5253

@@ -55,7 +56,7 @@ Create a MongoDB Cluster
5556
.. important::
5657

5758
Make sure to replace the ``<username>`` and ``<password>`` sections of the connection
58-
string with the username and password of your Atlas user.
59+
string with the username and password of your database user.
5960

6061
Set Up Your Project
6162
-------------------
@@ -65,7 +66,7 @@ Set Up Your Project
6566

6667
.. step:: Create the Project
6768

68-
Create a new directory and initialize your project with the ``dotnet new`` command,
69+
Create a new directory and use the ``dotnet new`` command to initialize your project
6970
as follows:
7071

7172
.. code-block:: shell
@@ -91,7 +92,7 @@ Query Your MongoDB Cluster from Your Application
9192
.. procedure::
9293
:style: connected
9394

94-
.. step:: Create the Code File
95+
.. step:: Add the Sample Code
9596

9697
Open the file named ``Program.cs`` in the base directory of your project. Copy the
9798
following sample code into ``Program.cs``:
@@ -100,7 +101,7 @@ Query Your MongoDB Cluster from Your Application
100101
:language: csharp
101102
:dedent:
102103

103-
.. step:: Run an Atlas Query
104+
.. step:: Query the Sample Data
104105

105106
Run the following command in your shell. It should print the plot of the movie
106107
"Back to the Future" from the sample dataset:

0 commit comments

Comments
 (0)