From 23ca15241ccc5e78563bb0f1a0e8ab4b787556e4 Mon Sep 17 00:00:00 2001 From: Josh Queen <38072328+josh-queen@users.noreply.github.com> Date: Wed, 20 May 2020 09:09:35 +0100 Subject: [PATCH] fix:(curriculum): Moved code tag to include new keyword (#38780) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Moved code tag to include new keyword The new keyword hasn't been explained in the curriculum yet, so have moved the tag to include the new keyword to give a prompt that it needs to be used in the solution. * Update curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md Added comma. Co-authored-by: Lasse Jørgensen <28780271+lasjorg@users.noreply.github.com> --- ...ow-functions-to-write-concise-anonymous-functions.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md index 70d17d43c9..f865d890fb 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.english.md @@ -37,7 +37,7 @@ This code will still return value by default. ## Instructions
-Rewrite the function assigned to the variable magic which returns a new Date() to use arrow function syntax. Also make sure nothing is defined using the keyword var. +Rewrite the function assigned to the variable magic which returns a new Date() to use arrow function syntax. Also, make sure nothing is defined using the keyword var.
## Tests