From 8e9db7a36403aef9854102ddb78714e36b55a2f5 Mon Sep 17 00:00:00 2001 From: Slava Leleka Date: Tue, 22 Aug 2023 19:14:00 +0300 Subject: [PATCH] fix method modifier restrictions --- docs/general/ad-filtering/create-own-filters.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/general/ad-filtering/create-own-filters.md b/docs/general/ad-filtering/create-own-filters.md index d3a7b933739..6b3d7c9a511 100644 --- a/docs/general/ad-filtering/create-own-filters.md +++ b/docs/general/ad-filtering/create-own-filters.md @@ -527,10 +527,10 @@ This modifier limits the rule scope to requests that use the specified set of HT - `@@||evil.com$method=get` unblocks only GET requests to `evil.com`. - `@@||evil.com$method=~post` unblocks any requests to `evil.com` except POST. -:::note +:::caution Restrictions -Rules with mixed value restriction are considered invalid. So, for example, the rule -`||evil.com^$method=get|~head` will be rejected. +Rules with mixed negated and not negated values are considered invalid. +So, for example, the rule `||evil.com^$method=get|~head` will be rejected. :::