diff --git a/api-guide/permissions/index.html b/api-guide/permissions/index.html index d7c2f86fa..614e1146b 100644 --- a/api-guide/permissions/index.html +++ b/api-guide/permissions/index.html @@ -661,7 +661,8 @@ class ExampleView(APIView):
Note
-Composition of permissions supports & (and), | (or) and ~ (not) operators.
Composition of permissions supports the & (and), | (or) and ~ (not) operators, and also allows the use of brackets ( ) to group expressions.
Operators follow the same precedence and associativity rules as standard logical operators (~ highest, then &, then |).