From 4352b845f872799c1246914b5d3425135f122a5d Mon Sep 17 00:00:00 2001 From: Hannes Sandberg Date: Tue, 11 Jun 2024 15:00:12 +0200 Subject: [PATCH] add missing curly brace --- .../property-based-access-control.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/authentication-authorization/property-based-access-control.adoc b/modules/ROOT/pages/authentication-authorization/property-based-access-control.adoc index 2a2b16eff..fe459a29a 100644 --- a/modules/ROOT/pages/authentication-authorization/property-based-access-control.adoc +++ b/modules/ROOT/pages/authentication-authorization/property-based-access-control.adoc @@ -41,7 +41,7 @@ Pattern syntax: ---- ([var][:label["|" ...]] "{" property: value "}") | (var[:label["|" ...]]) WHERE [NOT] var.property { { = | <> | > | >= | < | <= } value | IS NULL | IS NOT NULL | IN { "["[value[, ...]]"]" | listParam } } -| (var[:label["|" ...]] WHERE [NOT] var.property { { = | <> | > | >= | < | <= } value | IS NULL | IS NOT NULL | IN "["[value[, ...]]"]" | listParam } } ) +| (var[:label["|" ...]] WHERE [NOT] var.property { { = | <> | > | >= | < | <= } value | IS NULL | IS NOT NULL | IN { "["[value[, ...]]"]" | listParam } } ) ---- [NOTE] ====