From d99e40c6edfcb76c1eb79b998fccfc1c0e31e650 Mon Sep 17 00:00:00 2001 From: Alexander Leschanz <80907917+Creative-Difficulty@users.noreply.github.com> Date: Tue, 4 Nov 2025 19:32:13 +0000 Subject: [PATCH] fix: Wording in timezone message (#605) --- app/helpers/application_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 8aa8a66..8920979 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -67,7 +67,7 @@ module ApplicationHelper elsif diff.positive? "It's currently #{Time.zone.now.in_time_zone(timezone1).strftime("%H:%M")} in #{timezone1} (#{msg} ahead of you)" else - "It's currently #{Time.zone.now.in_time_zone(timezone1).strftime("%H:%M")} in #{timezone1} (#{msg} behind of you)" + "It's currently #{Time.zone.now.in_time_zone(timezone1).strftime("%H:%M")} in #{timezone1} (#{msg} behind you)" end end