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,