Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugo-ter-Doest committed Jul 2, 2024
1 parent da68353 commit 9b99972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/tfidf_spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe('tfidf', function () {
tfidf = new TfIdf()
tfidf.addDocument(['domain', 'google.com'])
const terms: TfIdfTerm[] = tfidf.listTerms(0)
it ('should list important terms correctly without tokenizing again', function () {
it('should list important terms correctly without tokenizing again', function () {
expect(terms[0].tfidf).toBeGreaterThan(0)
expect(terms[1].tfidf).toBeGreaterThan(0)
})
Expand Down

0 comments on commit 9b99972

Please sign in to comment.