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

Commit 5a1a2b2

Browse files
chore(docs): proofreading the docs (#6129)
* Update extensions.mdx * Update token.mdx * Update single-pool.mdx * Update algolia.css
1 parent 23916b2 commit 5a1a2b2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/src/single-pool.mdx

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

104104
</TabItem>
105105
<TabItem value="jsc" label="WEB3.JS CLASSIC">

docs/src/theme/SearchBar/algolia.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.algolia-docsearch-suggestion--highlight {
1818
color: #3a33d1;
1919
}
20-
/* Highligted search terms in the main category headers */
20+
/* Highlighted search terms in the main category headers */
2121
.algolia-docsearch-suggestion--category-header
2222
.algolia-docsearch-suggestion--highlight {
2323
background-color: #4d47d5;

docs/src/token-2022/extensions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1811,7 +1811,7 @@ Token-2022 implements all of the instructions from the
18111811
[spl-token-group-interface](https://github.com/solana-labs/solana-program-library/tree/master/token-group/interface).
18121812

18131813
The group extension works directly with the group-pointer extension.
1814-
To intialize group configurations within a mint, you must add the group-pointer
1814+
To initialize group configurations within a mint, you must add the group-pointer
18151815
extension, pointed at the mint itself, during mint creation.
18161816

18171817
The tools do this for you automatically.
@@ -1886,7 +1886,7 @@ group address and the member's number, can be stored directly in the mint
18861886
itself.
18871887

18881888
The member extension, like the group extension, works directly with the
1889-
member-pointer extension. To intialize member configurations within a mint,
1889+
member-pointer extension. To initialize member configurations within a mint,
18901890
you must add the member-pointer extension, pointed at the mint itself, during
18911891
mint creation.
18921892

docs/src/token.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -978,7 +978,7 @@ account.
978978
<TabItem value="jsx" label="JS">
979979

980980
The main difference in using multisign is specifying the owner as the multisig key,
981-
and giving the list of signers when contructing a transaction. Normally you would
981+
and giving the list of signers when constructing a transaction. Normally you would
982982
provide the signer that has authority to run the transaction as the owner, but in
983983
the multisig case the owner would be the multisig key.
984984

@@ -1239,7 +1239,7 @@ console.log(`Minted ${mintInfo.supply} token`);
12391239

12401240
### Example: Offline signing with multisig
12411241

1242-
Sometimes online signing is not possible or desireable. Such is the case for example when signers are not in the same geographic location
1242+
Sometimes online signing is not possible or desirable. Such is the case for example when signers are not in the same geographic location
12431243
or when they use air-gapped devices not connected to the network. In this case, we use offline signing which combines the
12441244
previous examples of [multisig](#example-mint-with-multisig-authority) with [offline signing](https://docs.solana.com/offline-signing)
12451245
and a [nonce account](https://docs.solana.com/offline-signing/durable-nonce).

0 commit comments

Comments
 (0)