From a7ffd57116658a49ad5e6cf4e0729336c2da3697 Mon Sep 17 00:00:00 2001 From: Alberto Date: Fri, 17 Nov 2017 10:22:22 -0800 Subject: [PATCH] docs: Fix missing call to playlist (#86) The API title is correct but the example is missing the call to playlist --- docs/api.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/api.md b/docs/api.md index f50998e..c425102 100644 --- a/docs/api.md +++ b/docs/api.md @@ -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 ```