spelling: timestamp

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:50:02 -05:00
parent 994d10f5df
commit f257b7ae1f
3 changed files with 4 additions and 4 deletions

View file

@ -134,7 +134,7 @@ static void prv_render_bpm(GContext *ctx, Layer *base_layer) {
graphics_text_node_destroy(&container->node);
}
static void prv_render_timstamp(GContext *ctx, Layer *base_layer) {
static void prv_render_timestamp(GContext *ctx, Layer *base_layer) {
HealthHrSummaryCardData *data = layer_get_data(base_layer);
if (data->last_updated <= 0 || data->now_bpm == 0) {
@ -189,7 +189,7 @@ static void prv_base_layer_update_proc(Layer *base_layer, GContext *ctx) {
prv_render_bpm(ctx, base_layer);
prv_render_timstamp(ctx, base_layer);
prv_render_timestamp(ctx, base_layer);
}
static void prv_hr_detail_card_unload_callback(Window *window) {