Skip to content

Commit 731b210

Browse files
committed
Quick bug fix: Duck Typist.
1 parent 7bc4919 commit 731b210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/duck-typist.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ window.addEventListener('DOMContentLoaded', () => {
8080
.then(response => response.json())
8181
.then(data => {
8282
gDictionary.trigrams = Object.keys(data.trigrams);
83-
gDictionary.bigrams = Object.keys(data.digrams);
83+
gDictionary.bigrams = Object.keys(data.bigrams);
8484
});
8585
};
8686

0 commit comments

Comments
 (0)