From 21a678ca25a1733759bd899ad9d7fdb59024ef57 Mon Sep 17 00:00:00 2001 From: teor Date: Fri, 20 Dec 2024 10:16:08 +1000 Subject: [PATCH] Fix typos --- crates/sp-domains/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sp-domains/src/lib.rs b/crates/sp-domains/src/lib.rs index 3f169729b8..d6dcc85621 100644 --- a/crates/sp-domains/src/lib.rs +++ b/crates/sp-domains/src/lib.rs @@ -1394,9 +1394,9 @@ pub type ExecutionReceiptFor = ExecutionReceipt< /// Domain chains allowlist updates. #[derive(Default, Debug, Encode, Decode, PartialEq, Eq, Clone, TypeInfo)] pub struct DomainAllowlistUpdates { - /// Chains that are allowed to open channel with this chain. + /// Chains that are allowed to open a channel with this chain. pub allow_chains: BTreeSet, - /// Chains that are not allowed to open channel with this chain. + /// Chains that are not allowed to open a channel with this chain. pub remove_chains: BTreeSet, }