diff options
author | Max Kellermann <max@musicpd.org> | 2019-03-15 19:14:06 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-03-15 19:14:06 +0100 |
commit | ddd2b604890db0c7afcdd8377e551d34fae0d03d (patch) | |
tree | 38fa73bb86fcefd12d2f51b0ec5f61aa12e36219 /doc/protocol.rst | |
parent | 8777737861ca2c01003e03b0f90b78feb2a2895a (diff) |
doc/protocol.rst: add missing operators to example expressions
Diffstat (limited to 'doc/protocol.rst')
-rw-r--r-- | doc/protocol.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/protocol.rst b/doc/protocol.rst index c51db6dd3..cc23c14aa 100644 --- a/doc/protocol.rst +++ b/doc/protocol.rst @@ -207,11 +207,11 @@ backslash. Example expression which matches an artist named ``foo'bar"``:: - (artist "foo\'bar\"") + (Artist == "foo\'bar\"") At the protocol level, the command must look like this:: - find "(artist \"foo\\'bar\\\"\")" + find "(Artist == \"foo\\'bar\\\"\")" The double quotes enclosing the artist name must be escaped because they are inside a double-quoted ``find`` parameter. The single quote |