Skip to content

Commit ed741f5

Browse files
committed
Fix broker references.
1 parent eac06d1 commit ed741f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/source/ref/models/search.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ to perform exact matches on fields indexed in a MongoDB Atlas Search index.
4848
4949
The ``path`` argument can be either the name of a field (as a string), or a
5050
:class:`~django.db.models.F` instance. The ``value`` argument
51-
must be a string or a :class:`~django.db.models.expressions.Value`.
51+
must be a string or a :class:`~django.db.models.Value`.
5252

5353
``SearchEquals`` objects can be reused and combined with other search
5454
expressions.
@@ -77,7 +77,7 @@ MongoDB Atlas Search index.
7777
The ``path`` argument specifies the field to search and can be a string or a
7878
:class:`~django.db.models.F`. The ``query`` is the user input
7979
string to autocomplete and can be passed as a string or a
80-
:class:`~django.db.models.expressions.Value`.
80+
:class:`~django.db.models.Value`.
8181

8282
Optional arguments:
8383

@@ -141,7 +141,7 @@ documents whose field contains a value from the provided array.
141141
142142
The ``path`` argument can be the name of a field (as a string) or a
143143
:class:`~django.db.models.F`. The ``value`` must be a list
144-
of values or a :class:`~django.db.models.expressions.Value`.
144+
of values or a :class:`~django.db.models.Value`.
145145

146146
An optional ``score`` argument can be used to customize relevance scoring.
147147

@@ -651,7 +651,7 @@ expression.
651651
This expression can be passed to most Atlas Search operators through the
652652
``score`` argument to customize how MongoDB calculates and applies scoring.
653653

654-
It directly maps to the :doc:`score option <atlas:atlas-search/scoring/>` of
654+
It directly maps to the :doc:`score option <atlas:atlas-search/scoring>` of
655655
the relevant Atlas Search operator.
656656

657657
.. code-block:: pycon

0 commit comments

Comments
 (0)