Skip to content

Commit 70485c6

Browse files
Correct syntax in isProperFraction function
Fix syntax error in isProperFraction function.
1 parent 424fb3a commit 70485c6

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ numerator = Number(numerator);
2424
denominator = Number(denominator);
2525
if (isNaN(numerator) || isNaN(denominator) {
2626
return false;})
27+
*/
2728
// The line below allows us to load the isProperFraction function into tests in other files.
2829
// This will be useful in the "rewrite tests with jest" step.
2930
module.exports = isProperFraction;

0 commit comments

Comments
 (0)