浏览代码

Fix typo in MaybeRpcAccount description (#402)

abelmarnk 2 周之前
父节点
当前提交
1375a1c77e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/pages/umi/accounts.md

+ 1 - 1
src/pages/umi/accounts.md

@@ -17,7 +17,7 @@ type RpcAccount = AccountHeader & {
 };
 ```
 
-It also defines a `MaybeRpcAccount` type that represents an `RpcAccount` that may or may exist. When the account does not exist, it keeps track of its public key so that, in a list of accounts, we know which public key was not found.
+It also defines a `MaybeRpcAccount` type that represents an `RpcAccount` that may or may not exist. When the account does not exist, it keeps track of its public key so that, in a list of accounts, we know which public key was not found.
 
 ```ts
 type MaybeRpcAccount =