From b1db440881200884cd47030f0a2be07cfd86ceb0 Mon Sep 17 00:00:00 2001 From: Andrej Rasevic <andrej@rasevicengineering.com> Date: Fri, 10 Jan 2025 21:00:20 -0500 Subject: [PATCH] fixing typo in readme --- Exercises/Exercise2/Exercise2_Description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercises/Exercise2/Exercise2_Description.md b/Exercises/Exercise2/Exercise2_Description.md index b6efeb4..8ff22ea 100644 --- a/Exercises/Exercise2/Exercise2_Description.md +++ b/Exercises/Exercise2/Exercise2_Description.md @@ -20,8 +20,8 @@ Â Â It is advised that you acquaint yourself with the way in which we use the convertToHTML() method provided for you as well as how you can use the innerHTML attribute to set and get data in an HTML element. -2. Formating and output: -Â Â You will be using the innerHTML attribute to set your results to the the unorded list <ul> with classname `list`. You should use template strings in order to display and format your ouput to match the specs (`${}` for those that need a reminder) +2. Formating and output: +Â Â You will be using the innerHTML attribute to set your results to the the unordered list with classname `list`. You should use template strings in order to display and format your ouput to match the specs (`${}` for those that need a reminder) 3. Additional Notes: Â Â You should not alter the `fetch()` call,this is a way we obtain the movie data from the internet. This should go without saying, but you should not hardcode your results, we will check your submissions to make sure this does not happen. You should use the functional array prototypes that we have gone over in class and that are mentioned in this exercise (map, sort, filter, reduce), using for loops, for..of loops, while loops, etc will result in a substantial amount of point deduction. -- GitLab