Skip to content

Commit 86edbc0

Browse files
authored
fix typos in error messages (#463)
1 parent f3559ff commit 86edbc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export class OpenSeaStreamClient {
8181
};
8282

8383
public disconnect = (
84-
callback = () => this.info(`Succesfully disconnected from socket`)
84+
callback = () => this.info(`Successfully disconnected from socket`)
8585
) => {
8686
this.channels.clear();
8787
return this.socket.disconnect(callback);
@@ -131,7 +131,7 @@ export class OpenSeaStreamClient {
131131
channel.leave().receive('ok', () => {
132132
this.channels.delete(topic);
133133
this.info(
134-
`Succesfully left channel "${topic}" listening for ${eventType}`
134+
`Successfully left channel "${topic}" listening for ${eventType}`
135135
);
136136
});
137137
};

0 commit comments

Comments
 (0)