Skip to content

Commit 2104ca7

Browse files
committed
test php link
1 parent 1b87a67 commit 2104ca7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/eloquent-models/schema-builder.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ indexes created by running the migration:
514514
"fields": [ {
515515
"type": "vector",
516516
"numDimensions": 4,
517-
"path": "vector4",
517+
"path": "embeddings",
518518
"similarity": "cosine"
519519
} ]
520520
},

docs/fundamentals/atlas-search.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ You can create an Atlas Search index in either of the following ways:
6464
:ref:`laravel-schema-builder-atlas-idx` section of the Schema Builder guide.
6565

6666
- Access a collection, then call the
67-
:phpmethod:`createSearchIndex() <MongoDB\\Collection::createSearchIndex()>`
67+
:phpmethod:`createSearchIndex() <phpmethod.MongoDB\\Collection::createSearchIndex()>`
6868
method from the {+php-library+}, as shown in the following code:
6969

7070
.. code-block:: php

docs/fundamentals/vector-search.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ You can create an Atlas Search index in either of the following ways:
6464
:ref:`laravel-schema-builder-atlas-idx` section of the Schema Builder guide.
6565

6666
- Access a collection, then call the
67-
:phpmethod:`createSearchIndex() <MongoDB\\Collection::createSearchIndex()>`
67+
:phpmethod:`createSearchIndex() <phpmethod.MongoDB\\Collection::createSearchIndex()>`
6868
method from the {+php-library+}. You must specify the ``type`` option as
6969
``'vectorSearch'``, as shown in the following code:
70-
70+
7171
.. code-block:: php
7272

7373
$collection = DB::connection('mongodb')->getCollection('movies');

0 commit comments

Comments
 (0)