fix(curriculum): Make challenge instruction clearer (#36771)

pull/36780/head
Huyen Nguyen 2019-09-11 15:48:28 +07:00 committed by mrugesh
parent 53ca86e953
commit 087640d020
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ function findGreaterOrEqual(a, b) {
## Instructions
<section id='instructions'>
Use multiple <code>conditional operators</code> in the <code>checkSign</code> function to check if a number is positive, negative or zero.
Use multiple <code>conditional operators</code> in the <code>checkSign</code> function to check if a number is positive, negative or zero. The function should return "positive", "negative" or "zero".
</section>
## Tests