Skip to content

Commit

Permalink
docs: Fix the advance plugin example in documentation (#4923)
Browse files Browse the repository at this point in the history
  • Loading branch information
199911 authored and gkatsev committed Feb 9, 2018
1 parent 7145a9c commit 4afabc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guides/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ class Advanced extends Plugin {

// Whenever the player emits a playing or paused event, we update the

This comment has been minimized.

Copy link
@thijstriemstra

thijstriemstra Feb 12, 2018

Contributor

this comment still refers to paused @199911

// state if necessary.
this.on(player, ['playing', 'paused'], this.updateState);
this.on(player, ['playing', 'pause'], this.updateState);
this.on('statechanged', this.logState);
}

Expand Down

0 comments on commit 4afabc2

Please sign in to comment.