Removed trailing spaces from RAKE

This commit is contained in:
n1474335 2024-04-23 18:29:04 +01:00
parent e61d64f618
commit 361a35b44c
No known key found for this signature in database
GPG Key ID: D15457B7B4AF3F37
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class RAKE extends Operation {
// Remove duplicate phrases
phrases = phrases.unique();
// Generate word_degree_matrix and populate
const wordDegreeMatrix = Array(tokens.length).fill().map(() => Array(tokens.length).fill(0));
for (const phrase of phrases) {