diff options
author | Max Kellermann <max@duempel.org> | 2008-12-24 23:54:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-24 23:54:09 +0100 |
commit | 1b5dd452d1806c0276a55ea4ffee17c456ff0f2f (patch) | |
tree | c0b7c35a4209564c72fc67227dc8f400825d8aee /doc | |
parent | 1bd3cde062deb3b61872f89ad02fc5d70cff375d (diff) | |
download | mpd-1b5dd452d1806c0276a55ea4ffee17c456ff0f2f.tar.gz mpd-1b5dd452d1806c0276a55ea4ffee17c456ff0f2f.tar.xz mpd-1b5dd452d1806c0276a55ea4ffee17c456ff0f2f.zip |
doc: fix "playlistdelete" documentation
"playlistdelete" takes a song position, not a song id. There are
no song ids in stored playlists.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/protocol.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/protocol.xml b/doc/protocol.xml index 304b492b1..ff5d4838f 100644 --- a/doc/protocol.xml +++ b/doc/protocol.xml @@ -924,12 +924,12 @@ OK <cmdsynopsis> <command>playlistdelete</command> <arg choice="req"><replaceable>NAME</replaceable></arg> - <arg choice="req"><replaceable>SONGID</replaceable></arg> + <arg choice="req"><replaceable>SONGPOS</replaceable></arg> </cmdsynopsis> </term> <listitem> <para> - Deletes <varname>SONGID</varname> from the + Deletes <varname>SONGPOS</varname> from the playlist <filename>NAME.m3u</filename>. </para> </listitem> |