From 71808f108f70541cb562ad53194c2e9ae8d35626 Mon Sep 17 00:00:00 2001 From: Gerben van de Wiel <clshannon@protonmail.com> Date: Mon, 25 Jan 2021 01:17:54 +0100 Subject: [PATCH] Very minor typo in the docs (#7967) Found this very minor typo when browsing the docs. --- substrate/frame/support/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/frame/support/src/lib.rs b/substrate/frame/support/src/lib.rs index 1127afa9e81..bdabc75fea2 100644 --- a/substrate/frame/support/src/lib.rs +++ b/substrate/frame/support/src/lib.rs @@ -1899,7 +1899,7 @@ pub mod pallet_prelude { /// use super::*; /// /// #[pallet::pallet] -/// #[pallet::generete($visibility_of_trait_store trait Store)] +/// #[pallet::generate($visibility_of_trait_store trait Store)] /// // NOTE: if the visibility of trait store is private but you want to make it available /// // in super, then use `pub(super)` or `pub(crate)` to make it available in crate. /// pub struct Pallet<T>(PhantomData<T>); -- GitLab