From 7a31d17d8976a5f2e9056520dedf5b564b64b310 Mon Sep 17 00:00:00 2001 From: fanqiaojun Date: Wed, 22 Jan 2025 17:35:39 +0800 Subject: [PATCH] chore: fix some typos in comment Signed-off-by: fanqiaojun --- packages/blue-api-sdk/src/types.ts | 2 +- packages/migration-sdk-viem/README.md | 2 +- packages/morpho-ts/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/blue-api-sdk/src/types.ts b/packages/blue-api-sdk/src/types.ts index 80635d4e..87a6a738 100644 --- a/packages/blue-api-sdk/src/types.ts +++ b/packages/blue-api-sdk/src/types.ts @@ -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"]; diff --git a/packages/migration-sdk-viem/README.md b/packages/migration-sdk-viem/README.md index 889f13f3..8d853948 100644 --- a/packages/migration-sdk-viem/README.md +++ b/packages/migration-sdk-viem/README.md @@ -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 diff --git a/packages/morpho-ts/README.md b/packages/morpho-ts/README.md index f3f1be4a..5f68edec 100644 --- a/packages/morpho-ts/README.md +++ b/packages/morpho-ts/README.md @@ -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" ```