Quellcode durchsuchen

Fix typo in MaybeRpcAccount description (#402)

abelmarnk vor 2 Wochen
Ursprung
Commit
1375a1c77e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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 =