From 1aeec4e75ce730b761331f31a92e72dae539644f Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Sun, 7 Feb 2010 04:20:28 +0100 Subject: [PATCH] Use remove(track) instead of remove(position) --- docs/api/backends.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/api/backends.rst b/docs/api/backends.rst index 365c6d85..d5077082 100644 --- a/docs/api/backends.rst +++ b/docs/api/backends.rst @@ -75,12 +75,12 @@ The currently loaded :class:`mopidy.models.Playlist`. - .. method:: remove(position) + .. method:: remove(track) - Remove the track at ``position`` from the current playlist. + Remove the track from the current playlist. - :param position: position of track to remove - :type position: int + :param track: track to remove + :type track: :class:`mopidy.models.Track` .. method:: shuffle(start=None, end=None)