@@ -161,7 +161,7 @@ class SearchClient(
161161 * @param objectID
162162 * Unique record identifier.
163163 * @param body
164- * The record, a schemaless object with attributes that are useful in the context of search and discovery.
164+ * The record. A schemaless object with attributes that are useful in the context of search and discovery.
165165 */
166166 def addOrUpdateObject (indexName : String , objectID : String , body : Any , requestOptions : Option [RequestOptions ] = None )(
167167 implicit ec : ExecutionContext
@@ -314,8 +314,8 @@ class SearchClient(
314314 * proximity, geo distance. Browse requests automatically apply these settings: - `advancedSyntax`: `false` -
315315 * `attributesToHighlight`: `[]` - `attributesToSnippet`: `[]` - `distinct`: `false` - `enablePersonalization`:
316316 * `false` - `enableRules`: `false` - `facets`: `[]` - `getRankingInfo`: `false` - `ignorePlurals`: `false` -
317- * `optionalFilters`: `[]` - `typoTolerance`: `true` or `false` (`min` and `strict` is evaluated to `true`) If you
318- * send these parameters with your browse requests, they'll be ignored.
317+ * `optionalFilters`: `[]` - `typoTolerance`: `true` or `false` (`min` and `strict` evaluate to `true`) If you send
318+ * these parameters with your browse requests, they'll be ignored.
319319 *
320320 * Required API Key ACLs:
321321 * - browse
@@ -925,7 +925,7 @@ class SearchClient(
925925 execute[Seq [Source ]](request, requestOptions)
926926 }
927927
928- /** Retrieves a syonym by its ID. To find the object IDs for your synonyms, use the [`search`
928+ /** Retrieves a synonym by its ID. To find the object IDs for your synonyms, use the [`search`
929929 * operation](#tag/Synonyms/operation/searchSynonyms).
930930 *
931931 * Required API Key ACLs:
@@ -1153,7 +1153,7 @@ class SearchClient(
11531153 * Related guide: [Copy
11541154 * indices](https://www.algolia.com/doc/guides/sending-and-managing-data/manage-indices-and-apps/manage-indices/how-to/copy-indices/)
11551155 * **Move** - Moving a source index that doesn't exist is ignored without returning an error. - When moving an index,
1156- * the analytics data keep their original name and a new set of analytics data is started for the new name. To access
1156+ * the analytics data keeps its original name, and a new set of analytics data is started for the new name. To access
11571157 * the original analytics in the dashboard, create an index with the original name. - If the destination index has
11581158 * replicas, moving will overwrite the existing index and copy the data to the replica indices. - Related guide:
11591159 * [Move
@@ -1182,7 +1182,7 @@ class SearchClient(
11821182 execute[UpdatedAtResponse ](request, requestOptions)
11831183 }
11841184
1185- /** Adds new attributes to a record, or update existing ones. - If a record with the specified object ID doesn't
1185+ /** Adds new attributes to a record, or updates existing ones. - If a record with the specified object ID doesn't
11861186 * exist, a new record is added to the index **if** `createIfNotExists` is true. - If the index doesn't exist yet,
11871187 * this method creates a new index. - You can use any first-level attribute but not nested attributes. If you specify
11881188 * a nested attribute, the engine treats it as a replacement for its first-level ancestor. To update an attribute
@@ -1198,10 +1198,10 @@ class SearchClient(
11981198 * the provided value is greater than the current value, and otherwise ignore the whole object update. For example,
11991199 * if you pass an IncrementSet value of 2 for the version attribute, and the current value of the attribute is 1, the
12001200 * engine updates the object. If the object doesn't exist yet, the engine only creates it if you pass an IncrementSet
1201- * value that's greater than 0. You can specify an operation by providing an object with the attribute to update as
1202- * the key and its value being an object with the following properties: - _operation: the operation to apply on the
1203- * attribute - value: the right-hand side argument to the operation, for example, increment or decrement step, value
1204- * to add or remove.
1201+ * value greater than 0. You can specify an operation by providing an object with the attribute to update as the key
1202+ * and its value being an object with the following properties: - _operation: the operation to apply on the attribute
1203+ * \ - value: the right-hand side argument to the operation, for example, increment or decrement step, value to add or
1204+ * remove.
12051205 *
12061206 * Required API Key ACLs:
12071207 * - addObject
@@ -1314,7 +1314,7 @@ class SearchClient(
13141314 * @param indexName
13151315 * Name of the index on which to perform the operation.
13161316 * @param body
1317- * The record, a schemaless object with attributes that are useful in the context of search and discovery.
1317+ * The record. A schemaless object with attributes that are useful in the context of search and discovery.
13181318 */
13191319 def saveObject (indexName : String , body : Any , requestOptions : Option [RequestOptions ] = None )(implicit
13201320 ec : ExecutionContext
@@ -1467,7 +1467,7 @@ class SearchClient(
14671467 execute[UpdatedAtResponse ](request, requestOptions)
14681468 }
14691469
1470- /** Sends multiple search request to one or more indices. This can be useful in these cases: - Different indices for
1470+ /** Sends multiple search requests to one or more indices. This can be useful in these cases: - Different indices for
14711471 * different purposes, such as, one index for products, another one for marketing content. - Multiple searches to the
14721472 * same index—for example, with different filters.
14731473 *
@@ -1578,7 +1578,7 @@ class SearchClient(
15781578 execute[SearchRulesResponse ](request, requestOptions)
15791579 }
15801580
1581- /** Searches a single index and return matching search results (_hits_). This method lets you retrieve up to 1,000
1581+ /** Searches a single index and returns matching search results (_hits_). This method lets you retrieve up to 1,000
15821582 * hits. If you need more, use the [`browse` operation](#tag/Search/operation/browse) or increase the
15831583 * `paginatedLimitedTo` index setting.
15841584 *
0 commit comments