Skip to content

Commit

Permalink
Fixed tiny typo miutes to minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleycawley committed Dec 13, 2024
1 parent c51256b commit 94f7875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meshtastic.c
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ void seconds_to_days_str(uint32_t seconds, char *buffer)
if (hours > 0)
g_string_append_printf(str, "%d hours, ", hours);
if (minutes > 0)
g_string_append_printf(str, "%d miutes, ", minutes);
g_string_append_printf(str, "%d minutes, ", minutes);
if (seconds > 0)
g_string_append_printf(str, "%d seconds ", seconds);
strcpy(buffer, str->str);
Expand Down

0 comments on commit 94f7875

Please sign in to comment.