소스 검색

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 =