From 91b527da37631d331be64fb23990c3de080c670e Mon Sep 17 00:00:00 2001 From: Nikita Khateev Date: Wed, 13 Dec 2023 16:18:21 +0400 Subject: [PATCH] fixed glitch in message queue --- docs/modules/ROOT/pages/pallets/message-queue.adoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/modules/ROOT/pages/pallets/message-queue.adoc b/docs/modules/ROOT/pages/pallets/message-queue.adoc index c69166d..68ea696 100644 --- a/docs/modules/ROOT/pages/pallets/message-queue.adoc +++ b/docs/modules/ROOT/pages/pallets/message-queue.adoc @@ -2,7 +2,7 @@ :highlightjs-languages: rust :github-icon: pass:[] -= pallet_message_queue link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.3.0/substrate/frame/message-queue/src/lib.rs[{github-icon},role=heading-link] += pallet_message_queue Branch/Release: `release-polkadot-v{1.3.0}` @@ -10,7 +10,7 @@ Branch/Release: `release-polkadot-v{1.3.0}` Flexible FRAME pallet for implementing message queues. This pallet can also initiate message processing using the `MessageProcessor` (see `Config`). -== Config +== Config link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.3.0/substrate/frame/message-queue/src/lib.rs#L445[{github-icon},role=heading-link] * Pallet-specific configs: ** `MessageProcessor` -- Processor for messages ** `Size` -- Page/heap size type. @@ -23,7 +23,7 @@ Flexible FRAME pallet for implementing message queues. This pallet can also init ** `RuntimeEvent` -- The overarching event type. ** `WeightInfo` -- Weight information for extrinsics in this pallet. -== Dispatchables +== Dispatchables link:https://github.com/paritytech/polkadot-sdk/blob/release-polkadot-v1.3.0/substrate/frame/message-queue/src/lib.rs#L594[{github-icon},role=heading-link] [.contract-item] [[execute_overweight]]