From 731b2100617e29c63dffb53b7be3db364570e9ff Mon Sep 17 00:00:00 2001 From: Nuclear Squid Date: Sun, 24 Nov 2024 13:34:03 +0100 Subject: [PATCH] Quick bug fix: Duck Typist. --- code/duck-typist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/duck-typist.js b/code/duck-typist.js index c24e8281..a8223163 100644 --- a/code/duck-typist.js +++ b/code/duck-typist.js @@ -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); }); };