chore: fix typo in AccountInfo docs (#22196)

This commit is contained in:
Victor Wu 2021-12-30 17:03:42 -05:00 committed by GitHub
parent d421ccb330
commit 736f974082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1723,7 +1723,7 @@ export type AccountInfo<T> = {
lamports: number;
/** Optional data assigned to the account */
data: T;
/** Optional rent epoch infor for account */
/** Optional rent epoch info for account */
rentEpoch?: number;
};