Skip to content

Commit

Permalink
docs: Fix missing call to playlist (#86)
Browse files Browse the repository at this point in the history
The API title is correct but the example is missing the call to playlist
  • Loading branch information
alberto1el authored and misteroneill committed Nov 17, 2017
1 parent 1de5341 commit a7ffd57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,13 +266,13 @@ Examples:

```js

player.repeat(true);
player.playlist.repeat(true);

player.repeat();
player.playlist.repeat();
// true

player.repeat(false);
player.repeat();
player.playlist.repeat(false);
player.playlist.repeat();
// false

```
Expand Down

0 comments on commit a7ffd57

Please sign in to comment.