From ffce49d024a5fee46c5c25f1e7e00c7ef6be2284 Mon Sep 17 00:00:00 2001 From: Ashish Singh Date: Sat, 15 Dec 2018 11:56:12 +0530 Subject: [PATCH] fixing typo for one of the challenges in es6 section for issue #34578 (#34579) * fixing typo on UI * changed tes string * updated changes for issue #34578 --- .../create-an-export-fallback-with-export-default.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/create-an-export-fallback-with-export-default.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/create-an-export-fallback-with-export-default.english.md index 40cf714403..e1b6defc9f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/create-an-export-fallback-with-export-default.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/create-an-export-fallback-with-export-default.english.md @@ -23,8 +23,8 @@ The following function should be the fallback value for the module. Please add t ```yml tests: - - text: Proper used of export fallback. - testString: getUserInput => assert(getUserInput('index').match(/export\s+default\s+function\s+subtract\(x,y\)\s+{return\s+x\s-\s+y;}/g), 'Proper used of export fallback.'); + - text: Your code should use export fallback. + testString: getUserInput => assert(getUserInput('index').match(/export\s+default\s+function\s+subtract\(x,y\)\s+{return\s+x\s-\s+y;}/g), 'Your code should use export fallback.'); ```