Skip to content

Commit f7c3c23

Browse files
committed
JS feedback
1 parent c88384f commit f7c3c23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/integrations/mongoose-get-started.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ methods. These methods are not used specifically in this tutorial, but they are
9191
helpful to reference when getting started with Mongoose.
9292

9393
exists()
94-
~~~~~~``
94+
~~~~~~~~
9595

9696
The ``exists()`` method returns either ``null`` or the ``ObjectId`` of a document that
9797
matches the provided query. The following is an example of matching an article
@@ -107,7 +107,7 @@ For more information, see the `Model.exists()
107107
Mongoose API documentation.
108108

109109
where()
110-
~~~~~~`
110+
~~~~~~~
111111

112112
The ``where()`` method allows you to chain and build queries. The following is
113113
an example of performing a find operation by using ``findOne()`` and the equivalent
@@ -511,7 +511,7 @@ In this tutorial, you will perform the following actions:
511511
});
512512
...
513513

514-
You can also reuse the name User model for the ``comment.user`` field by
514+
You can reuse the same ``User`` model for the ``comment.user`` field by
515515
changing the ``blogSchema`` definition:
516516

517517
.. code-block:: javascript

0 commit comments

Comments
 (0)