Skip to content

Commit

Permalink
Fix typo in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
tsmith023 committed Jan 13, 2025
1 parent 79aed4a commit 04d9467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collections/query/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export type BaseHybridOptions<T> = SearchOptions<T> & {
alpha?: number;
/** The type of fusion to apply. If not specified, the default fusion type specified by the server is used. */
fusionType?: 'Ranked' | 'RelativeScore';
/** The maximum tolerated similarity in the vector search before the results are cutoff from the resultset. */
/** The maximum tolerated similarity in the vector search before the results are cutoff from the result set. */
maxVectorDistance?: number;
/** The properties to search in. If not specified, all properties are searched. */
queryProperties?: (PrimitiveKeys<T> | Bm25QueryProperty<T>)[];
Expand Down

0 comments on commit 04d9467

Please sign in to comment.