From 4d40a7199283e58a16c81d947cfe17b0f1de664e Mon Sep 17 00:00:00 2001 From: xingyue Date: Tue, 5 Sep 2023 09:35:41 +0800 Subject: [PATCH] bug --- .../introduction-to-anchor/the-anchor-framework/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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>,