Skip to content

Commit 25115c6

Browse files
Merge #1571
1571: meilisearch-js #1569 Fixed Typo in exported type: RakingScoreDetails… r=bidoubiwa a=tonyghouse # Pull Request ## Related issue Fixes #1569 ## What does this PR do? - meilisearch-js #1569 Fixed Typo in exported type: RakingScoreDetails -> RankingScoreDetails ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Tony Ghouse <[email protected]>
2 parents d99a264 + d12867f commit 25115c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/types/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,10 @@ export type Hit<T = Record<string, any>> = T & {
151151
_formatted?: Partial<T>
152152
_matchesPosition?: MatchesPosition<T>
153153
_rankingScore?: number
154-
_rankingScoreDetails?: RakingScoreDetails
154+
_rankingScoreDetails?: RankingScoreDetails
155155
}
156156

157-
export type RakingScoreDetails = {
157+
export type RankingScoreDetails = {
158158
words?: {
159159
order: number
160160
matchingWords: number

0 commit comments

Comments
 (0)