From 297331c8a432f9481f827f17d3187f45434af0ad Mon Sep 17 00:00:00 2001 From: Nuclear Squid Date: Fri, 29 Nov 2024 14:52:17 +0100 Subject: [PATCH] Revert "Quick bug fix: Duck Typist." This reverts commit 731b2100617e29c63dffb53b7be3db364570e9ff. --- 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 a8223163..c24e8281 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.bigrams); + gDictionary.bigrams = Object.keys(data.digrams); }); };