fix(curriculum): added extra line before </section> tag - Engl… (#36278)

This commit is contained in:
Randell Dawson
2019-07-18 08:24:12 -07:00
committed by mrugesh
parent b038af4925
commit c387873640
927 changed files with 928 additions and 0 deletions

View File

@ -60,4 +60,5 @@ var quotient = 0.0 / 2.0; // Fix this line
```js
var quotient = 4.4 / 2.0;
```
</section>

View File

@ -94,4 +94,5 @@ function checkSign(num) {
return (num > 0) ? 'positive' : (num < 0) ? 'negative' : 'zero';
}
```
</section>

View File

@ -82,4 +82,5 @@ function checkEqual(a, b) {
return a === b ? "Equal" : "Not Equal";
}
```
</section>

View File

@ -67,4 +67,5 @@ function convertToInteger(str) {
return parseInt(str, 2);
}
```
</section>

View File

@ -64,4 +64,5 @@ function convertToInteger(str) {
return parseInt(str);
}
```
</section>