Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 6fe3c15

Browse files
authored
docs: Fix typos (#5808)
* fix typo * fix typo * fix typos * fix typo * fix typo
1 parent b1ba649 commit 6fe3c15

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

account-compression/sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ await sendAndConfirmTransaction(connection, tx, [payer]);
137137

138138
4. Replace a leaf in the tree, using a 3rd party indexer
139139

140-
This example assumes that some 3rd party service is indexing the the tree at `cmtKeypair.publicKey` for you, and providing MerkleProofs via some REST endpoint.
140+
This example assumes that some 3rd party service is indexing the tree at `cmtKeypair.publicKey` for you, and providing MerkleProofs via some REST endpoint.
141141
The `getProofFromAnIndexer` function is a **placeholder** to exemplify this relationship.
142142

143143
```typescript
@@ -177,4 +177,4 @@ Here are some examples using account compression in the wild:
177177

178178
2. Then build the SDK with `yarn build`.
179179

180-
3. Run tests with `yarn test`. (Expect `jest` to detect an open handle that prevents it from exiting naturally)
180+
3. Run tests with `yarn test`. (Expect `jest` to detect an open handle that prevents it from exiting naturally)

docs/src/feature-proposal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This section describes the life cycle of a feature proposal.
6060
The first step is to conceive of the new feature and realize it in the
6161
Solana code base, working with the core Solana developers at https://github.com/solana-labs/solana.
6262

63-
During the implementation, a *feature id* will be required to identity the new
63+
During the implementation, a *feature id* will be required to identify the new
6464
feature in the code base to avoid the new functionality until its activation.
6565
The *feature id* for a feature proposal is derived by running the following
6666
commands.
@@ -140,8 +140,8 @@ acceptance, the votes are tallied by running:
140140
```
141141
$ spl-feature-proposal tally 8CyUVvio2oYAP28ZkMBPHq88ikhRgWet6i4NYsCW5Cxa
142142
```
143-
Anybody may tally the vote. Once the required number of votes are tallied, the
143+
Anybody may tally the vote. Once the required number of votes is tallied, the
144144
feature will be automatically activated at the start of the next epoch.
145145

146146
Upon a successful activation the feature will now show as activated by
147-
`solana feature status` as well.
147+
`solana feature status` as well.

docs/src/single-pool.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $ solana config set --keypair usb://ledger/
9494
the wallet to draw funds from (for instance, to fund new stake accounts),
9595
and the signing authority on accounts that require one.
9696
When token accounts are required, it defaults to the default keypair's associated account.
97-
All of these roles can be overrided by command-line flags.
97+
All of these roles can be overriden by command-line flags.
9898

9999
</TabItem>
100100
<TabItem value="jsc" label="WEB3.JS CLASSIC">

docs/src/stake-pool/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ using the `add-validator` instruction. In this command, the stake pool uses
6666
reserve funds to create a new stake account and delegate it to the desired validator.
6767

6868
At this point, users can also deposit a stake account into the pool. To do this,
69-
they must delegate a stake account to the one of the validators in the stake pool.
69+
they must delegate a stake account to one of the validators in the stake pool.
7070
If the stake pool has a preferred deposit validator, the user must delegate their
7171
stake to that validator's vote account.
7272

@@ -172,7 +172,7 @@ In this way, a user's funds are never at risk, and always redeemable.
172172
### Active stakes
173173

174174
As mentioned earlier, the stake pool works with active stakes to
175-
maintains fungibility of stake pool tokens. Fully activated stakes
175+
maintain fungibility of stake pool tokens. Fully activated stakes
176176
are not equivalent to inactive, activating, or deactivating stakes due to the
177177
time cost of staking.
178178

docs/src/stake-pool/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ through an automated system to collect information about the stake pool and the
207207
network, and decide how much stake to allocate to each validator.
208208

209209
The Solana Foundation maintains an open-source bot for its delegation program,
210-
which can be adapated for your stake pool. The source code is part of the
210+
which can be adapted for your stake pool. The source code is part of the
211211
[stake-o-matic GitHub repo](https://github.com/solana-labs/stake-o-matic/tree/master/bot).
212212

213213
Additionally, there is a work-in-progress Python stake pool bot, found at the

0 commit comments

Comments
 (0)