Skip to content

Commit

Permalink
Update lua/gitlab/utils/init.lua
Browse files Browse the repository at this point in the history
fix: unify with Gitlab.com
  • Loading branch information
jakubbortlik authored Nov 23, 2024
1 parent e023653 commit 21c2b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/gitlab/utils/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ M.time_since = function(date_string, current_date_table)
local time_diff = current_date - date

if time_diff < 60 then
return "moments ago"
return "just now"
elseif time_diff < 3600 then
return M.pluralize(math.floor(time_diff / 60), "minute") .. " ago"
elseif time_diff < 86400 then
Expand Down

0 comments on commit 21c2b8e

Please sign in to comment.