Skip to content

Commit

Permalink
use smaller dictionary file
Browse files Browse the repository at this point in the history
  • Loading branch information
gr0uch committed Feb 4, 2023
1 parent a4b08c3 commit 0aeacad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion parallel-search/web/dictionary-compact.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion parallel-search/web/worker.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const api = {

const t1 = Date.now();
let i = 0;
for (const word in json) {
for (const word of json) {
index.loadResult(word);
i++;
}
Expand Down

0 comments on commit 0aeacad

Please sign in to comment.