Skip to content

Commit

Permalink
🔇 silent changes: update codebase #3
Browse files Browse the repository at this point in the history
  • Loading branch information
pnguyen215 committed Oct 4, 2024
1 parent db60401 commit e2deaa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/src/main/groovy/org/unify4j/common/Time4j.java
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ public static String since(long epochMilli) {
int years = period.getYears();

if (seconds < 60) {
return seconds <= 1 ? "Just now" : seconds + " seconds ago";
return seconds <= 1 ? "just now" : seconds + " seconds ago";
} else if (minutes < 60) {
return minutes == 1 ? "1 minute ago" : minutes + " minutes ago";
} else if (hours < 24) {
Expand Down

0 comments on commit e2deaa8

Please sign in to comment.