diff --git a/source/index-management/index-management.rst b/source/index-management/index-management.rst index 1f601a1866..ded45416f2 100644 --- a/source/index-management/index-management.rst +++ b/source/index-management/index-management.rst @@ -974,7 +974,7 @@ Index View API for Search Indexes /** * Returns the search index view for this collection. */ - searchIndexes(name: Optional, aggregateOptions: Optional, options: Optional): SearchIndexView; + searchIndexes(name: Optional, aggregateOptions: Optional, options: Optional): SearchIndexView; } interface SearchIndexView extends Iterable { @@ -1031,7 +1031,7 @@ Index View API for Search Indexes /** * Updates a single search index from the collection by the index name. */ - updateOne(name: String, options: Optional): Result; + updateOne(name: String, definition: Document, options: Optional): Result; } ---------