make AllModules public (#8017)

* make AllModules public

* add doc comments for AllModules
This commit is contained in:
Alexander Popiak
2021-02-01 16:55:44 +01:00
committed by GitHub
parent c42d756fb7
commit c83bca67b5
@@ -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 );
)
}