fix: remove guide linting and fix failing challenges

This commit is contained in:
Oliver Eyton-Williams
2019-07-19 11:04:45 +02:00
committed by mrugesh
parent f809100406
commit b8593326b0
8 changed files with 13 additions and 8 deletions

View File

@ -53,4 +53,5 @@ const makeServerRequest = new Promise((resolve, reject) => {
});
```
</section>

View File

@ -18,6 +18,7 @@ The above <code>import</code> statement will create an object called <code>myMat
myMathModule.add(2,3);
myMathModule.subtract(5,3);
```
</section>
## Instructions
@ -41,7 +42,7 @@ tests:
<div id='js-seed'>
```js
// add code above this line
stringFunctions.uppercaseString("hello");

View File

@ -63,7 +63,7 @@ const HIGH_TEMPERATURES = {
// change code below this line
const today = HIGH_TEMPERATURES.today;
const tomorrow = HIGH_TEMPERATURES.tomorrow;
const tomorrow = HIGH_TEMPERATURES.tomorrow;
// change code above this line
@ -95,4 +95,5 @@ console.log(yesterday) // should be not defined
console.log(today); // should be 77
console.log(tomorrow); // should be 80
```
</section>