diff options
Diffstat (limited to 'doc')
-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 |