fix(curriculum): Remove unnecessary comments (#41777)

* Remove unnecessary comments

https://github.com/freeCodeCamp/freeCodeCamp/pull/41612

* Remove unnecessary comment
pull/41782/head
Emer Conghaile 2021-04-08 12:59:25 -05:00 committed by GitHub
parent 87b0e5bb7a
commit fe95d5bca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -66,7 +66,6 @@ assert(/=\s*myStorage\.car\.inside\[\s*("|')glove box\1\s*\]/g.test(code));
## --seed-contents--
```js
// Setup
var myStorage = {
"car": {
"inside": {
@ -79,7 +78,7 @@ var myStorage = {
}
};
var gloveBoxContents = undefined; // Change this line
var gloveBoxContents = undefined;
```
# --solutions--