Skip to content

Commit

Permalink
Fix typo: everyday=>every day
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Dec 22, 2024
1 parent eb845a9 commit 3de77fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ public class UserService {
* Persistent Token are used for providing automatic authentication, they should be automatically deleted after
* 30 days.
* <p>
* This is scheduled to get fired everyday, at midnight.
* This is scheduled to get fired every day, at midnight.
*/
@Scheduled(cron = "0 0 0 * * ?")
public void removeOldPersistentTokens() {
Expand All @@ -838,7 +838,7 @@ public class UserService {
/**
* Not activated users should be automatically deleted after 3 days.
* <p>
* This is scheduled to get fired everyday, at 01:00 (am).
* This is scheduled to get fired every day, at 01:00 (am).
*/
@Scheduled(cron = "0 0 1 * * ?")
public void removeNotActivatedUsers() {
Expand Down

0 comments on commit 3de77fb

Please sign in to comment.