Skip to content

Commit 5feb888

Browse files
committed
typo
1 parent f155027 commit 5feb888

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

articles/search/hybrid-search-ranking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Here's a simple explanation of the RRF process:
3535

3636
1. The engine ranks documents based on combined scores and sorts them. The resulting list is the fused ranking.
3737

38-
Only fields marked as `searchable` in the index are used for scoring. Only fields marked as `retrievable`, or fields that are specified in `searchFields` in the query, are returned in search results, along with their search score.
38+
Only fields marked as `searchable` in the index, or `searchFields` in the query, are used for scoring. Only fields marked as `retrievable`, or fields specified in `select` in the query, are returned in search results, along with their search score.
3939

4040
### Parallel query execution
4141

articles/search/vector-search-ranking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ In the HNSW algorithm, a vector query search operation is executed by navigating
6767

6868
1. Completion: The search completes when the desired number of nearest neighbors have been identified, or when other stopping criteria are met. This desired number of nearest neighbors is governed by the query-time parameter `k`.
6969

70-
Only fields marked as `searchable` in the index are used for scoring. Only fields marked as `retrievable`, or fields that are specified in `searchFields` in the query, are returned in search results, along with their search score.
70+
Only fields marked as `searchable` in the index, or `searchFields` in the query, are used for scoring. Only fields marked as `retrievable`, or fields specified in `select` in the query, are returned in search results, along with their search score.
7171

7272
## Similarity metrics used to measure nearness
7373

0 commit comments

Comments
 (0)