From 63934338823ef9e7ef556bea12707531ab2600e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sun, 4 Sep 2022 12:24:56 +0200 Subject: [PATCH] events: Fix glob definition in PolicyRuleEventContent --- crates/ruma-common/src/events/policy/rule.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ruma-common/src/events/policy/rule.rs b/crates/ruma-common/src/events/policy/rule.rs index 959f9219..e0634f31 100644 --- a/crates/ruma-common/src/events/policy/rule.rs +++ b/crates/ruma-common/src/events/policy/rule.rs @@ -14,8 +14,8 @@ pub mod user; pub struct PolicyRuleEventContent { /// The entity affected by this rule. /// - /// Glob characters `*` and `?` can be used to match zero or more and one or more characters - /// respectively. + /// Glob characters `*` and `?` can be used to match zero or more characters or exactly one + /// character respectively. pub entity: String, /// The suggested action to take.