Skip to content

Commit

Permalink
chore: fix some typos in comment
Browse files Browse the repository at this point in the history
Signed-off-by: fanqiaojun <[email protected]>
  • Loading branch information
fanqiaojun committed Jan 29, 2025
1 parent 9529ba4 commit 7a31d17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/blue-api-sdk/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2089,7 +2089,7 @@ export type VaultAllocationHistorySupplyCapUsdArgs = {
/** Vault allocator */
export type VaultAllocator = {
__typename?: "VaultAllocator";
/** Allocator adress. */
/** Allocator address. */
address: Scalars["Address"]["output"];
/** Allocator since block number */
blockNumber: Scalars["BigInt"]["output"];
Expand Down
2 changes: 1 addition & 1 deletion packages/migration-sdk-viem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ await sendTransaction(client, migrationBundle.tx());

The obtained bundle is made of:
- `actions`: The list of actions being performed by the bundler contract.
- `requirements`: The list of requirements that should be fullfilled for the tx to succeed. It is made of:
- `requirements`: The list of requirements that should be fulfilled for the tx to succeed. It is made of:
- `txs`: The list of transactions that should be executed before the main bundle.
- `type`: action performed (approval, ...)
- `args`: arguments used in the transaction
Expand Down
2 changes: 1 addition & 1 deletion packages/morpho-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ customFormat.short.of(1234.5678); // "1234.567"
customFormat.number.of(1234.5678); // "+1234.56"
customFormat.custom.of(1234.5678); // "$1234.56"

// Default options can be normally overriden
// Default options can be normally overridden
customFormat.short.digits(1).of(1234.5678); // "1234.5"
```

Expand Down

0 comments on commit 7a31d17

Please sign in to comment.