From 6a0c45fa2e2d0918d30a5d1c0a2d4540abe33615 Mon Sep 17 00:00:00 2001 From: "@mkarots" Date: Mon, 31 Jan 2022 16:43:46 +0000 Subject: [PATCH] chore: fixes typo (#22830) --- web3.js/examples/get_account_info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3.js/examples/get_account_info.js b/web3.js/examples/get_account_info.js index 07bb3122d2..86fe6eb450 100644 --- a/web3.js/examples/get_account_info.js +++ b/web3.js/examples/get_account_info.js @@ -19,7 +19,7 @@ import * as web3 from '@solana/web3.js'; // get account info // account data is bytecode that needs to be deserialized - // serialization and deserialization is program specic + // serialization and deserialization is program specific let account = await connection.getAccountInfo(wallet.publicKey); console.log(account); })();