Skip to content

Commit

Permalink
Typo (#28269)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert authored Dec 22, 2024
1 parent 95526e0 commit 675cace
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"updated": "L'utilisateur {{ param }} a été mis à jour.",
"deleted": "L'utilisateur {{ param }} a été supprimé.",
"delete": {
"question": "Etes-vous certain de vouloir supprimer l'utilisateur {{ login }} ?"
"question": "Êtes-vous certain de vouloir supprimer l'utilisateur {{ login }} ?"
},
"detail": {
"title": "Utilisateur"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ To stop and remove the containers, run:
docker compose -f <%- dockerServicesDir %>services.yml down
```
[Spring Docker Compose Integration](https://docs.spring.io/spring-boot/reference/features/dev-services.html) is enable by default. It's possible to disable it in application.yml:
[Spring Docker Compose Integration](https://docs.spring.io/spring-boot/reference/features/dev-services.html) is enabled by default. It's possible to disable it in application.yml:
```yaml
spring:
Expand Down
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 675cace

Please sign in to comment.