From 06d97ac813c2acee3ef040c04dc2b44d07fd8a07 Mon Sep 17 00:00:00 2001 From: Enock Kasaadha <54111299+EnockKasaadha@users.noreply.github.com> Date: Fri, 27 Mar 2020 04:01:58 +0300 Subject: [PATCH] fix(curriculum/learn): moved the comment one line below. (#38422) moved the comment ` //add code above this line` in the text editor of [this challenge](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/es6/use--to-import-everything-from-a-file) one line below so that it makes meaning. --- .../es6/use--to-import-everything-from-a-file.english.md | 1 + 1 file changed, 1 insertion(+) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use--to-import-everything-from-a-file.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use--to-import-everything-from-a-file.english.md index ad2cccbd6a..a1f22d84dd 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use--to-import-everything-from-a-file.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use--to-import-everything-from-a-file.english.md @@ -59,6 +59,7 @@ stringFunctions.lowercaseString("WORLD!"); ```js import * as stringFunctions from "./string_functions.js"; +// add code above this line stringFunctions.uppercaseString("hello"); stringFunctions.lowercaseString("WORLD!"); ```