From ff85200bb670b73d5bc324f1fda39eb1be60b06c Mon Sep 17 00:00:00 2001 From: Nikhil Gupta <17176722+gupnik@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:12:37 +0530 Subject: [PATCH] Fixes doc comments --- substrate/frame/system/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/substrate/frame/system/src/lib.rs b/substrate/frame/system/src/lib.rs index 0fcecaaae31a..2b038901a703 100644 --- a/substrate/frame/system/src/lib.rs +++ b/substrate/frame/system/src/lib.rs @@ -308,21 +308,21 @@ pub mod pallet { /// The weight of database operations that the runtime can invoke. type DbWeight = (); - /// The ubiquitous event type injected by `construct_runtime!`. #[inject_runtime_type] + /// The ubiquitous event type injected by `construct_runtime!`. type RuntimeEvent = (); - /// The ubiquitous origin type injected by `construct_runtime!`. #[inject_runtime_type] + /// The ubiquitous origin type injected by `construct_runtime!`. type RuntimeOrigin = (); + #[inject_runtime_type] /// The aggregated dispatch type available for extrinsics, injected by /// `construct_runtime!`. - #[inject_runtime_type] type RuntimeCall = (); - /// Converts a module to the index of the module, injected by `construct_runtime!`. #[inject_runtime_type] + /// Converts a module to the index of the module, injected by `construct_runtime!`. type PalletInfo = (); /// The basic call filter to use in dispatchable. Supports everything as the default.