Skip to content

Commit

Permalink
Quick bug fix: Duck Typist.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuclear-Squid committed Nov 24, 2024
1 parent 7bc4919 commit 731b210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/duck-typist.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ window.addEventListener('DOMContentLoaded', () => {
.then(response => response.json())
.then(data => {
gDictionary.trigrams = Object.keys(data.trigrams);
gDictionary.bigrams = Object.keys(data.digrams);
gDictionary.bigrams = Object.keys(data.bigrams);
});
};

Expand Down

0 comments on commit 731b210

Please sign in to comment.