diff --git a/docs/Solana-Co-Learn/module5/introduction-to-anchor/the-anchor-framework/README.md b/docs/Solana-Co-Learn/module5/introduction-to-anchor/the-anchor-framework/README.md index 947ed2a3f..70cfe82e7 100644 --- a/docs/Solana-Co-Learn/module5/introduction-to-anchor/the-anchor-framework/README.md +++ b/docs/Solana-Co-Learn/module5/introduction-to-anchor/the-anchor-framework/README.md @@ -225,7 +225,7 @@ pub mod program_module_name { // validate incoming account for instructions #[derive(Accounts)] pub struct InitializeAccounts<'info> { - #[account(init, payer = user, space = 8 + 8] + #[account(init, payer = user, space = 8 + 8)] pub account_name: Account<'info, AccountStruct>, #[account(mut)] pub user: Signer<'info>,