Skip to content

Commit 7bb56ea

Browse files
committed
fixes
1 parent d439dac commit 7bb56ea

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/django-get-started/django-connect-mongodb.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Configure your MongoDB Connection
8585

8686
python3 manage.py runserver
8787

88-
Then, visit http://127.0.0.1:8000/. You should see a "Congratulations!"
88+
Then, visit http://127.0.0.1:8000/. This page displays a "Congratulations!"
8989
message and an image of a rocket.
9090

9191
After completing these steps, you have a Django project configured

source/django-get-started/django-query-data.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Query MongoDB Data
1616

1717
.. step:: Query the users collection for a specified email
1818

19-
From the same Python shell as the :ref:`django-get-started-create-app`
19+
From the same Python shell as the :ref:`django-get-started-write`
2020
step of this tutorial, run the following code to query the
2121
``sample_mflix.users`` collection for a user whose email is
2222
@@ -34,8 +34,8 @@ Query MongoDB Data
3434
.. step:: Query the movies collection for runtime values
3535

3636
Run the following code to query the ``sample_mflix.movies``
37-
collection for movies that have a runtime value less than
38-
10:
37+
collection for movies that have a ``runtime`` value less than
38+
``10``:
3939

4040
.. code-block:: bash
4141

0 commit comments

Comments
 (0)