From 736f9740823c43b46bcfb6f453c5d5eb29268d1b Mon Sep 17 00:00:00 2001 From: Victor Wu Date: Thu, 30 Dec 2021 17:03:42 -0500 Subject: [PATCH] chore: fix typo in AccountInfo docs (#22196) --- web3.js/src/connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3.js/src/connection.ts b/web3.js/src/connection.ts index dd4b592d8..cd8f0a6c5 100644 --- a/web3.js/src/connection.ts +++ b/web3.js/src/connection.ts @@ -1723,7 +1723,7 @@ export type AccountInfo = { lamports: number; /** Optional data assigned to the account */ data: T; - /** Optional rent epoch infor for account */ + /** Optional rent epoch info for account */ rentEpoch?: number; };