Skip to content

Commit 264dac1

Browse files
committed
JS feedback
1 parent 2638858 commit 264dac1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

snooty.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ patch-version-number = "{+version-number+}.1" # a
3535
version = "v{+version-number+}"
3636
stable-api = "Stable API"
3737
api-root = "https://pymongo.readthedocs.io/en/{+patch-version-number+}/api/"
38-
django-odm = "MongoDB Backend for Django"
38+
django-odm = "Django MongoDB Backend"
3939
django-api = "https://django-mongodb.readthedocs.io/en/latest/"
4040
string-data-type = "``str``"
4141
int-data-type = "``int``"

source/interact-data/raw-queries.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ query the database by using MongoDB's aggregation pipeline syntax
2626
rather than Django methods.
2727

2828
The Django QuerySet API provides a ``QuerySet.raw()`` method, which allows
29-
you to perform raw SQL queries on relational databases. {+django-odm+}
29+
you to perform raw SQL queries on relational databases. However, {+django-odm+}
3030
does not support the ``raw()`` method. Instead, the ODM provides the
3131
``QuerySet.raw_aggregate()`` method, which you can use to send instructions
3232
to the database in pipeline stages.
@@ -165,7 +165,7 @@ functionality, such as matching text phrases, scoring results for
165165
relevance, and highlighting matches.
166166

167167
To specify an Atlas Search query, create an Atlas Search index
168-
that covers the fields you want to query. Then, specify the ``$search``
168+
that covers the fields you want to query. Then, pass a ``$search``
169169
or ``$searchMeta`` stage in an aggregation pipeline parameter to
170170
the ``raw_aggregate()`` method.
171171

@@ -279,7 +279,7 @@ a geographic location on the surface of the Earth or on a
279279
Euclidean plane.
280280

281281
To run a geospatial query, create a ``2d`` or ``2dsphere`` index on fields
282-
containing geospatial data. Then, specify one of the following
282+
containing geospatial data. Then, pass one of the following
283283
query operators in an aggregation pipeline parameter to
284284
the ``raw_aggregate()`` method:
285285

0 commit comments

Comments
 (0)