From c4091956b6d7b18c8fd105e9d22f4b2114b65053 Mon Sep 17 00:00:00 2001 From: AbdulSalphan <60968052+AbdulSalphan@users.noreply.github.com> Date: Thu, 23 Dec 2021 18:59:28 +0530 Subject: [PATCH] Update script.js Minor. Line 121 had 'the' typed twice by mistake. --- .../assignment5/assignment5-solution-starter/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assignments/assignment5/assignment5-solution-starter/js/script.js b/assignments/assignment5/assignment5-solution-starter/js/script.js index 72a35e4cf..378a7ebb4 100644 --- a/assignments/assignment5/assignment5-solution-starter/js/script.js +++ b/assignments/assignment5/assignment5-solution-starter/js/script.js @@ -118,7 +118,7 @@ function buildAndShowHomeHTML (categories) { // var homeHtmlToInsertIntoMainPage = .... - // TODO: STEP 4: Insert the the produced HTML in STEP 3 into the main page + // TODO: STEP 4: Insert the produced HTML in STEP 3 into the main page // Use the existing insertHtml function for that purpose. Look through this code for an example // of how to do that. // ....