From a29fe9f1ef15805d09454c6d642e9a0f50b3612a Mon Sep 17 00:00:00 2001 From: deterclosed <164524498+deterclosed@users.noreply.github.com> Date: Sat, 23 Mar 2024 21:34:25 +0800 Subject: [PATCH] chore: fix some typos (#6483) Signed-off-by: deterclosed --- docs/src/stake-pool/quickstart.md | 2 +- token/js/src/extensions/tokenGroup/state.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/stake-pool/quickstart.md b/docs/src/stake-pool/quickstart.md index ae628af807d..5fe89d45aa5 100644 --- a/docs/src/stake-pool/quickstart.md +++ b/docs/src/stake-pool/quickstart.md @@ -196,7 +196,7 @@ the pool, given the stake pool and validator file. $ ./deposit.sh keys/stake-pool.json local_validators.txt 10 ``` -Note: This is a bit more finnicky on a local network because of the short epochs, and +Note: This is a bit more finicky on a local network because of the short epochs, and may fail. No problem, you simply need to retry. ## Step 5: Rebalance stake in the pool diff --git a/token/js/src/extensions/tokenGroup/state.ts b/token/js/src/extensions/tokenGroup/state.ts index 9a1fd2eb4ed..a0822357c41 100644 --- a/token/js/src/extensions/tokenGroup/state.ts +++ b/token/js/src/extensions/tokenGroup/state.ts @@ -17,7 +17,7 @@ export function getTokenGroupState(mint: Mint): Partial | null { if (extensionData !== null) { const { updateAuthority, mint, size, maxSize } = unpackTokenGroup(extensionData); - // Explicity set None/Zero keys to null + // Explicitly set None/Zero keys to null return { updateAuthority: updateAuthority?.equals(PublicKey.default) ? undefined : updateAuthority, mint,