Skip to content

Commit 5fe6169

Browse files
Remove trailing spacing
Co-authored-by: merelymyself <[email protected]>
1 parent 42cec88 commit 5fe6169

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Maths/FindLcm.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ const findLcm = (num1, num2) => {
2222
if (num1 !== Math.round(num1) || num2 !== Math.round(num2)) {
2323
return 'Please enter whole numbers.'
2424
}
25-
2625
// Check to see whether num1 or num2 is larger.
2726
const maxNum = Math.max(num1, num2)
2827
let lcm = maxNum

0 commit comments

Comments
 (0)