We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3559ff commit 86edbc0Copy full SHA for 86edbc0
src/client.ts
@@ -81,7 +81,7 @@ export class OpenSeaStreamClient {
81
};
82
83
public disconnect = (
84
- callback = () => this.info(`Succesfully disconnected from socket`)
+ callback = () => this.info(`Successfully disconnected from socket`)
85
) => {
86
this.channels.clear();
87
return this.socket.disconnect(callback);
@@ -131,7 +131,7 @@ export class OpenSeaStreamClient {
131
channel.leave().receive('ok', () => {
132
this.channels.delete(topic);
133
this.info(
134
- `Succesfully left channel "${topic}" listening for ${eventType}`
+ `Successfully left channel "${topic}" listening for ${eventType}`
135
);
136
});
137
0 commit comments