1
0
Fork 0

[docs] Fix some typos

Closes #677, #774
This commit is contained in:
pukkandan 2021-08-28 02:20:18 +05:30
commit 2e7781a93c
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
4 changed files with 8 additions and 6 deletions

View file

@ -411,7 +411,7 @@ def parseOpts(overrideArguments=None):
'Python style regular expression matching can be done using "~=", '
'and multiple filters can be checked with "&". '
'Use a "\\" to escape "&" or quotes if needed. Eg: --match-filter '
r'"!is_live & like_count>?100 & description~=\'(?i)\bcats \& dogs\b\'" '
'"!is_live & like_count>?100 & description~=\'(?i)\\bcats \\& dogs\\b\'" '
'matches only videos that are not live, has a like count more than 100 '
'(or the like field is not available), and also has a description '
'that contains the phrase "cats & dogs" (ignoring case)'))