Skip to content

Commit b509c65

Browse files
committed
Change the first letter in ActualOutput to lower case
1 parent a8d716b commit b509c65

File tree

1 file changed

+2
-2
lines changed
  • Sprint-2/1-key-errors

1 file changed

+2
-2
lines changed

Sprint-2/1-key-errors/1.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ function convertToPercentage(decimalNumber) {
4848
return percentage;
4949
}
5050

51-
const ActualOutput = convertToPercentage(15);
52-
console.log(ActualOutput);
51+
const actualOutput = convertToPercentage(15);
52+
console.log(actualOutput);
5353
console.log(decimalNumber);

0 commit comments

Comments
 (0)