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); })();