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.
This commit is contained in:
Enock Kasaadha 2020-03-27 04:01:58 +03:00 committed by GitHub
parent f142eed6ef
commit 06d97ac813
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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!");
```