Skip to content

Commit e05bc8f

Browse files
author
russom
committed
isProperFraction provided with a return expression to evaluate proper fractions.
1 parent be2fbc2 commit e05bc8f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sprint-3/1-implement-and-rewrite-tests/implement/2-is-proper-fraction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
function isProperFraction(numerator, denominator) {
1414
// TODO: Implement this function
15-
return numerator > 0 && numerator < denominator;
15+
return numerator > 0 && numerator < denominator; // expression to compare proper fraction
1616
}
1717

1818
// The line below allows us to load the isProperFraction function into tests in other files.

0 commit comments

Comments
 (0)