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

* Remove unnecessary comments

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

* Update the hints section
This commit is contained in:
Emer Conghaile
2021-04-08 12:49:47 -05:00
committed by GitHub
parent c4ba0c692f
commit 87b0e5bb7a

View File

@ -50,7 +50,7 @@ You should add the property `bark` to `myDog`.
assert(myDog.bark !== undefined);
```
You should not add `bark` to the setup section.
You should not add `bark` to the initialization of `myDog`.
```js
assert(!/bark[^\n]:/.test(code));
@ -67,7 +67,6 @@ assert(!/bark[^\n]:/.test(code));
## --seed-contents--
```js
// Setup
var myDog = {
"name": "Happy Coder",
"legs": 4,
@ -75,7 +74,7 @@ var myDog = {
"friends": ["freeCodeCamp Campers"]
};
// Only change code below this line
```
# --solutions--