1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-17 06:35:42 +07:00

[docs] Fix some typos

Closes #677, #774
This commit is contained in:
pukkandan
2021-08-28 02:20:18 +05:30
parent bc36bc36a1
commit 2e7781a93c
4 changed files with 8 additions and 6 deletions

View File

@@ -411,7 +411,7 @@ def _dict_from_options_callback(
'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)'))