Skip to content

Commit

Permalink
Improve grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbaur committed May 15, 2024
1 parent 83dc623 commit 3c2fdb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boot.zig
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ fn autoboot(stop_fd: posix.fd_t) !bool {
std.log.info("using device \"{s}\"", .{dev.name});
var countdown = dev.timeout;
while (countdown > 0) : (countdown -= 1) {
std.log.info("booting in {} seconds", .{countdown});
std.log.info("booting in {} second(s)", .{countdown});
std.time.sleep(std.time.ns_per_s);
if (try need_to_stop(stop_fd)) {
return false;
Expand Down

0 comments on commit 3c2fdb9

Please sign in to comment.