diff --git a/substrate/srml/support/procedural/src/lib.rs b/substrate/srml/support/procedural/src/lib.rs index 78051ee8f2735e4fe72b8482bf9dfcdf139bbd42..674b90458f104977c1cf27b61746f4b93f3628a4 100644 --- a/substrate/srml/support/procedural/src/lib.rs +++ b/substrate/srml/support/procedural/src/lib.rs @@ -133,7 +133,17 @@ use proc_macro::TokenStream; /// } /// ``` /// -/// This struct can be exposed as `Config` by the `decl_runtime!` macro. +/// This struct can be exposed as `ExampleConfig` by the `construct_runtime!` macro like follows: +/// +/// ```nocompile +/// construct_runtime!( +/// pub enum Runtume with ... { +/// ..., +/// Example: example::{Module, Storage, ..., Config<T>}, +/// ..., +/// } +/// ); +/// ``` /// /// ### Module with Instances ///