From c83bca67b55caefad211b08d6631b6890dc54d95 Mon Sep 17 00:00:00 2001
From: Alexander Popiak <alexander.popiak@parity.io>
Date: Mon, 1 Feb 2021 16:55:44 +0100
Subject: [PATCH] make AllModules public (#8017)

* make AllModules public

* add doc comments for AllModules
---
 .../frame/support/procedural/src/construct_runtime/mod.rs  | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/substrate/frame/support/procedural/src/construct_runtime/mod.rs b/substrate/frame/support/procedural/src/construct_runtime/mod.rs
index 705c2cfcb44..abd68e4425d 100644
--- a/substrate/frame/support/procedural/src/construct_runtime/mod.rs
+++ b/substrate/frame/support/procedural/src/construct_runtime/mod.rs
@@ -470,8 +470,11 @@ fn decl_all_modules<'a>(
 
 	quote!(
 		#types
-		type AllModules = ( #all_modules );
-		type AllModulesWithSystem = ( #all_modules_with_system );
+		/// All pallets included in the runtime as a nested tuple of types.
+		/// Excludes the System pallet.
+		pub type AllModules = ( #all_modules );
+		/// All pallets included in the runtime as a nested tuple of types.
+		pub type AllModulesWithSystem = ( #all_modules_with_system );
 	)
 }
 
-- 
GitLab