Skip to content

Commit d6faae0

Browse files
committed
fix capitalization
1 parent 933a47d commit d6faae0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/scheduler.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ function setNameEstimate(seconds, msg) {
1414
}
1515
if (dataModel.current.song === "Internal_Wish_Name") {
1616
seconds = 0;
17-
msg = "Now";
17+
msg = "now";
1818
}
1919

2020
if (msg == null) {
2121
if (seconds < 60) {
22-
msg = "about " + seconds + " seconds";
22+
msg = "in about " + seconds + " seconds";
2323
} else {
2424
let minutes = Math.round(seconds/60);
25-
msg = "about " + minutes + " minutes";
25+
msg = "in about " + minutes + " minutes";
2626
if (minutes > 10) {
2727
msg = "about 10 minutes after name submitted";
2828
}

0 commit comments

Comments
 (0)