From ab60016394e226a53ab985426023752cfd989aec Mon Sep 17 00:00:00 2001 From: evenevent Date: Wed, 14 Aug 2024 00:26:40 +0800 Subject: [PATCH] chore: fix some comments Signed-off-by: evenevent --- packages/umi-tasks/test/Task.test.ts | 2 +- packages/umi/src/Transaction.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/umi-tasks/test/Task.test.ts b/packages/umi-tasks/test/Task.test.ts index 66f087d0..4299e683 100644 --- a/packages/umi-tasks/test/Task.test.ts +++ b/packages/umi-tasks/test/Task.test.ts @@ -152,7 +152,7 @@ test('it can listen to status changes', async (t) => { } t.deepEqual(h3, ['running', 'canceled']); - // And we get the right history for preloaded and resetted tasks. + // And we get the right history for preloaded and retested tasks. const l4 = new Task(() => 42); const h4 = await useHistory(l4); l4.loadWith(180); diff --git a/packages/umi/src/Transaction.ts b/packages/umi/src/Transaction.ts index 7b6b33f9..48601542 100644 --- a/packages/umi/src/Transaction.ts +++ b/packages/umi/src/Transaction.ts @@ -12,7 +12,7 @@ export const TRANSACTION_SIZE_LIMIT = 1232; /** * The version of a transaction. * - Legacy is the very first iteration of Solana transactions. - * - V0 introduces the concept of versionned transaction for + * - V0 introduces the concept of versioned transaction for * the first time and adds supports for address lookup tables. * * @category Transactions