Skip to content

Commit 0f50065

Browse files
committed
small fix
1 parent 77d77f5 commit 0f50065

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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:`MongoDB\Collection::createSearchIndex()` from the
67+
:phpmethod:`MongoDB\Collection::createSearchIndex()` method from the
6868
{+php-library+}, as shown in the following code:
6969

7070
.. code-block:: php

docs/fundamentals/vector-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:`MongoDB\Collection::createSearchIndex()` from the
67+
:phpmethod:`MongoDB\Collection::createSearchIndex()` method from the
6868
{+php-library+}. You must specify the ``type`` option as
6969
``'vectorSearch'``, as shown in the following code:
7070

docs/includes/schema-builder/galaxies_migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function up(): void
3333
});
3434
// end-create-search-indexes
3535

36-
// start-create-vs-index
36+
// begin-create-vs-index
3737
Schema::create('galaxies', function (Blueprint $collection) {
3838
$collection->vectorSearchIndex([
3939
'fields' => [

0 commit comments

Comments
 (0)