Skip to content

Commit

Permalink
Merge pull request #35 from AndreasElia/fix/channel-listen-typo
Browse files Browse the repository at this point in the history
typo fix "lister" -> "listen"
  • Loading branch information
kakajansh authored Jan 15, 2021
2 parents 25d8b83 + ac5477a commit 2a5c22b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/channel/channel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ abstract class Channel {
void unsubscribe();

/// Listen for a whisper event on the channel instance.
Channel listerForWhisper(String event, Function callback) {
Channel listenForWhisper(String event, Function callback) {
return this.listen('.client-$event', callback);
}

Expand Down

0 comments on commit 2a5c22b

Please sign in to comment.