Skip to content

Commit f4c8d85

Browse files
authored
Fix console log to use multiply function
1 parent 083a9d2 commit f4c8d85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • Sprint-2/2-mandatory-debug

Sprint-2/2-mandatory-debug/0.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ console.log(`The result of multiplying 10 and 32 is ${multiply(10, 32)}
1616
return a * b;
1717
}
1818
19-
console.log(` The sum of 10 and 32 is ${sum(10, 32)}`);
19+
console.log(`The result of multipying 10 and 32 is ${multiply(10, 32)}`);
2020

0 commit comments

Comments
 (0)