Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiendmt authored and cballevre committed Jul 24, 2024
1 parent 4095c87 commit 9f425a3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ducks/notifications/HealthBillLinked/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class HealthBillLinked extends NotificationView {
* Saves last notification date to transactions for which there was
* the notification.
*
* Executed by `Notification` when the notification has been successfuly sent
* Executed by `Notification` when the notification has been successfully sent
* See `Notification::sendNotification`
*/
async onSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/ducks/notifications/HealthBillLinked/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ describe('HealthBillLinked', () => {
})

describe('onSuccess', () => {
it('should be called after successfuly sending notifications', async () => {
it('should be called after successfully sending notifications', async () => {
jest.spyOn(Bill, 'getAll').mockResolvedValue(mockBills)

const client = new CozyClient({
Expand Down
4 changes: 2 additions & 2 deletions src/ducks/notifications/LateHealthReimbursement/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,13 @@ class LateHealthReimbursement extends NotificationView {
* Saves last notification date to transactions for which there was
* the notification.
*
* Executed by `Notification` when the notification has been successfuly sent
* Executed by `Notification` when the notification has been successfully sent
* See `Notification::sendNotification`
*/
async onSuccess() {
log(
'info',
'[🔔 notifications] LateHealthReimbursement: notification successfuly sent'
'[🔔 notifications] LateHealthReimbursement: notification successfully sent'
)

this.toNotify.forEach(transaction => {
Expand Down
2 changes: 1 addition & 1 deletion src/ducks/notifications/TransactionGreater/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class TransactionGreater extends NotificationView {
* Saves last notification date to transactions for which there was
* the notification.
*
* Executed by `Notification` when the notification has been successfuly sent
* Executed by `Notification` when the notification has been successfully sent
* See `Notification::sendNotification`
*/
async onSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/targets/services/categorization.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const runCategorization = async client => {
}
}

log('info', 'All transactions have been successfuly categorized.')
log('info', 'All transactions have been successfully categorized.')

log('info', 'Starting onOperationOrBillCreate service...')
await startService(client, 'onOperationOrBillCreate')
Expand Down

0 comments on commit 9f425a3

Please sign in to comment.