From 0f096eaf0f5768d1a11825a33787b054cb3adcfb Mon Sep 17 00:00:00 2001 From: Daryl McAvoy Date: Fri, 10 Jan 2020 19:07:52 -0600 Subject: [PATCH] Solutions are fixed and showing in the DOM --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 95ca954..e3d722b 100644 --- a/main.js +++ b/main.js @@ -147,7 +147,7 @@ const truthTest3 = () => { if (Boolean(t1) == false && Boolean(t2) == false) { - document.getElementById("display-element8").innerHTML = "Both of these are TRUE"; + document.getElementById("display-element8").innerHTML = "Both of these are false"; } else { document.getElementById("display-element8").innerHTML = "1 of these are not TRUE"; }