Skip to content

Commit aeaa60e

Browse files
authored
Update BaseSyncer.ts
1 parent 98555fa commit aeaa60e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/syncers/src/BaseSyncer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class BaseSyncer {
6060
});
6161

6262
this.worker.on("failed", (_, err) => {
63-
this.logger.error(new ErrorException("A worker error ocurred", err));
63+
this.logger.error(new ErrorException("A worker error occurred", err));
6464
});
6565

6666
this.connection = connection;
@@ -82,7 +82,7 @@ export class BaseSyncer {
8282
} catch (err) {
8383
throw new SyncerError(
8484
this.name,
85-
"An error ocurred when starting syncer",
85+
"An error occurred when starting syncer",
8686
err
8787
);
8888
}
@@ -117,7 +117,7 @@ export class BaseSyncer {
117117
} catch (err) {
118118
const err_ = new SyncerError(
119119
this.name,
120-
"An error ocurred when performing closing operation",
120+
"An error occurred when performing closing operation",
121121
err
122122
);
123123

0 commit comments

Comments
 (0)