Skip to content

Commit c232401

Browse files
committed
paraeter changed name
1 parent f6b823d commit c232401

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sprint-2/4-mandatory-interpret/time-format.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
function pad(0) {
1+
function pad(num) {
22
return num.toString().padStart(2, "0");
33
}
44

5-
function formatTimeDisplay(61) {
5+
function formatTimeDisplay(num) {
66
const remainingSeconds = seconds % 60;
77
const totalMinutes = (seconds - remainingSeconds) / 60;
88
const remainingMinutes = totalMinutes % 60;

0 commit comments

Comments
 (0)