mirror of
https://github.com/google/pebble.git
synced 2025-11-18 13:30:56 -05:00
spelling: forward
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
@@ -74,7 +74,7 @@ static Animation *prv_create_custom_animation(void) {
|
||||
|
||||
|
||||
static void click_handler(ClickRecognizerRef recognizer, Window *window) {
|
||||
// If the animation is still running, fast-foward to 300ms from the end
|
||||
// If the animation is still running, fast-forward to 300ms from the end
|
||||
if (animation_is_scheduled(s_animation)) {
|
||||
uint32_t duration = animation_get_duration(s_animation, true, true);
|
||||
animation_set_elapsed(s_animation, duration - 300);
|
||||
|
||||
@@ -87,7 +87,7 @@ static void prv_fill_high_low_temp_buffer(const int high, const int low, char *b
|
||||
/// Shown when only the day's low temperature is known (e.g. "--° / 52°")
|
||||
snprintf(buffer, buffer_size, i18n_get("--° / %i°", i18n_owner), low);
|
||||
} else {
|
||||
/// A day's high and low temperature, separated by a foward slash (e.g. "68° / 52°")
|
||||
/// A day's high and low temperature, separated by a forward slash (e.g. "68° / 52°")
|
||||
snprintf(buffer, buffer_size, i18n_get("%i° / %i°", i18n_owner), high, low);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user