Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
fsimonjetz committed Sep 26, 2023
1 parent 69d315a commit 6165f6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/fragmentarium/domain/ngramMatching.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChapterId } from 'transliteration/domain/chapter-id'

export type NgramScore = ChapterId & {
overlap: number
score: number
textName: string
}
2 changes: 1 addition & 1 deletion src/fragmentarium/ui/ngram-matching/NgramMatching.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function NgramMatching({
/>
}
</Col>
<Col>{score.overlap.toFixed(4)}</Col>
<Col>{score.score.toFixed(4)}</Col>
</Row>
))}
</Container>
Expand Down

0 comments on commit 6165f6c

Please sign in to comment.