]> kaliko git repositories - mpd-sima.git/commitdiff
doc: Fixed filter
authorkaliko <kaliko@azylum.org>
Tue, 16 Nov 2021 13:38:55 +0000 (14:38 +0100)
committerkaliko <kaliko@azylum.org>
Mon, 22 Nov 2021 15:01:30 +0000 (16:01 +0100)
Even it is a valid MPD filter, drop external enclosing parentheses

doc/source/user/01_configurations.rst

index 8eca8a8087d60e983bb82f15f29746491759ca87..235abb9df05b7692e11d77e9de912a1015c5ca47 100644 (file)
@@ -145,8 +145,8 @@ current filter "`(date =~ '198[2-9]+')`":
     genre = rock
     filter = (date =~ '198[2-9]+')
 
-And even go further and merge genre in the filter using "`((genre == 'rock') AND
-(date =~ '198[2-9]+'))`".
+And even go further and merge genre in the filter using "`(genre == 'rock') AND
+(date =~ '198[2-9]+')`".
 
 .. code:: ini
 
@@ -154,8 +154,7 @@ And even go further and merge genre in the filter using "`((genre == 'rock') AND
     internal = Crop, Tags
 
     [tags]
-    filter = (genre == 'rock' ) AND (date =~ '198[2-9]+'))
-
+    filter = (genre == 'rock' ) AND (date =~ '198[2-9]+')
 
 Since the setup for the filter can be tricky and it can be useful to validate
 the syntax and have a look at what kind of artists the filter would return.