Skip to content

Commit 75008c2

Browse files
authored
[FIX] - typos across the docs (#933)
* Fix typos and improve wording across multiple documentation files. * fix: llms
1 parent d243a0f commit 75008c2

File tree

19 files changed

+100
-100
lines changed

19 files changed

+100
-100
lines changed

develop/interoperability/send-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Where the [XCM format](https://github.com/polkadot-fellows/xcm-format){target=\_
2222

2323
- **Primitive**: Dispatchable functions to execute XCM locally.
2424
- **High-level**: Functions for asset transfers between chains.
25-
- **Version negotiation-specific**: Functions for managing XCM version compability.
25+
- **Version negotiation-specific**: Functions for managing XCM version compatibility.
2626

2727
### Key Roles of the XCM Pallet
2828

develop/interoperability/xcm-guides/from-apps/transfers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ As mentioned before, you need to specify the transfer type.
110110

111111
Yes. Fees are important for decentralized systems to prevent spam. Although it is possible to not specify remote fees, this is most likely not what you want when developing applications. Omitting the remote fees will append an [`UnpaidExecution`](https://paritytech.github.io/polkadot-sdk/master/staging_xcm/v5/enum.Instruction.html#variant.UnpaidExecution){target=\_blank} instruction to the remote XCM. This instruction signals to the destination system that there is a reason execution is allowed a message without paying for fees.
112112

113-
This usually means you're a priviledged origin, like `Root` or the `Fellowship` origin. It's mostly used from the runtime of the Polkadot SDK-based chains instead of from applications.
113+
This usually means you're a privileged origin, like `Root` or the `Fellowship` origin. It's mostly used from the runtime of the Polkadot SDK-based chains instead of from applications.
114114

115115
??? code "Teleport Example"
116116

develop/networks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Polkadot is the primary production blockchain network for high-stakes, enterpris
129129

130130
### Kusama
131131

132-
Kusama is a network built as a risk-taking, fast-moving "canary in the coal mine" for its cousin Polkadot. As it is built on top of the same infrastructure, Kusama often acts as a final testing ground for new features before they are launched on Polkadot. Unlike true TestNets, however, the Kusama KSM native token does have economic value. This incentive encourages paricipants to maintain this robust and performant structure for the benefit of the community.
132+
Kusama is a network built as a risk-taking, fast-moving "canary in the coal mine" for its cousin Polkadot. As it is built on top of the same infrastructure, Kusama often acts as a final testing ground for new features before they are launched on Polkadot. Unlike true TestNets, however, the Kusama KSM native token does have economic value. This incentive encourages participants to maintain this robust and performant structure for the benefit of the community.
133133

134134
=== "Network Details"
135135

develop/parachains/deployment/obtain-coretime.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,4 @@ On-demand coretime allows for flexible, as-needed block production. To purchase:
7979
- **`maxAmountFor`**: Sufficient funds for the transaction.
8080
- **`paraId`**: Your registered `ParaID`.
8181

82-
After succesfully executing the extrinsic, your parachain will produce a block.
82+
After successfully executing the extrinsic, your parachain will produce a block.

develop/parachains/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ With the [Polkadot relay chain](/polkadot-protocol/architecture/polkadot-chain/)
1515
Polkadot SDK’s FRAME framework provides developers with the tools to do the following:
1616

1717
- **Customize parachain runtimes**: [Runtimes](/polkadot-protocol/glossary/#runtime){target=\_blank} are the core building blocks that define the logic and functionality of Polkadot SDK-based parachains and let developers customize the parameters, rules, and behaviors that shape their blockchain network.
18-
- **Develop new pallets**: Create custom modular pallets to define runtime behavior and acheive desired blockchain functionality.
18+
- **Develop new pallets**: Create custom modular pallets to define runtime behavior and achieve desired blockchain functionality.
1919
- **Add smart contract functionality**: Use specialized pallets to deploy and execute smart contracts, enhancing your chain's functionality and programmability.
2020
- **Test your build for a confident deployment**: Create a test environment that can simulate runtime and mock transaction execution.
2121
- **Deploy your blockchain for use**: Take your Polkadot SDK-based blockchain from a local environment to production.
22-
- **Maintain your network including monitoring and upgrades**: Runtimes can be ugraded through forkless runtime updates, enabling seamless evolution of the parachain.
22+
- **Maintain your network including monitoring and upgrades**: Runtimes can be upgraded through forkless runtime updates, enabling seamless evolution of the parachain.
2323

2424
New to parachain development? Start with the [Introduction to the Polkadot SDK](/develop/parachains/intro-polkadot-sdk/) to discover how this framework simplifies building custom parachains.
2525

develop/parachains/maintenance/runtime-metrics-monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ graph TD
3131
localData --> getmetrics[Get Metrics]
3232
```
3333

34-
The diagram shows the flow of data from the Substrate node to the monitoring and visualization components. The Substrate node exposes a telemetry stream, which is consumed by Prometheus. Prometheus is configured to collect data every minute and store it. Grafana is then used to visualize the data, allowing the user to open graphs and retrieve specifc metrics from the telemetry stream.
34+
The diagram shows the flow of data from the Substrate node to the monitoring and visualization components. The Substrate node exposes a telemetry stream, which is consumed by Prometheus. Prometheus is configured to collect data every minute and store it. Grafana is then used to visualize the data, allowing the user to open graphs and retrieve specific metrics from the telemetry stream.
3535

3636
## Visual Monitoring
3737

develop/smart-contracts/dev-environments/remix.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ To create a new contract using the Polkadot Remix IDE, you can follow these step
9999
1. To deploy your contract, you need to:
100100

101101
1. Navigate to the **Deploy & Run Transactions** tab (fourth icon in the left sidebar).
102-
2. Click the **Enviroment** dropdown.
102+
2. Click the **Environment** dropdown.
103103
3. Select **Customize this list**.
104104

105105
![](/images/develop/smart-contracts/evm-toolkit/dev-environments/remix/remix-7.webp)
@@ -108,7 +108,7 @@ To create a new contract using the Polkadot Remix IDE, you can follow these step
108108

109109
![](/images/develop/smart-contracts/evm-toolkit/dev-environments/remix/remix-8.webp)
110110

111-
4. Click again the **Enviroment** dropdown and select **Injected Provider - Talisman**.
111+
4. Click again the **Environment** dropdown and select **Injected Provider - Talisman**.
112112

113113
![](/images/develop/smart-contracts/evm-toolkit/dev-environments/remix/remix-9.webp)
114114

develop/smart-contracts/faqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ categories: Smart Contracts
99
--8<-- 'text/smart-contracts/polkaVM-warning.md'
1010

1111
!!! note
12-
For a list of known incompatibilities, please refer to the [Solidity and Yul IR transaltion incompatibilities](/polkadot-protocol/smart-contract-basics/evm-vs-polkavm/#solidity-and-yul-ir-translation-incompatibilities){target=\_blank} section.
12+
For a list of known incompatibilities, please refer to the [Solidity and Yul IR translation incompatibilities](/polkadot-protocol/smart-contract-basics/evm-vs-polkavm/#solidity-and-yul-ir-translation-incompatibilities){target=\_blank} section.
1313

1414
## General Questions
1515

llms-files/llms-basics.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Where the [XCM format](https://github.com/polkadot-fellows/xcm-format){target=\_
204204

205205
- **Primitive**: Dispatchable functions to execute XCM locally.
206206
- **High-level**: Functions for asset transfers between chains.
207-
- **Version negotiation-specific**: Functions for managing XCM version compability.
207+
- **Version negotiation-specific**: Functions for managing XCM version compatibility.
208208

209209
### Key Roles of the XCM Pallet
210210

@@ -645,7 +645,7 @@ Polkadot is the primary production blockchain network for high-stakes, enterpris
645645

646646
### Kusama
647647

648-
Kusama is a network built as a risk-taking, fast-moving "canary in the coal mine" for its cousin Polkadot. As it is built on top of the same infrastructure, Kusama often acts as a final testing ground for new features before they are launched on Polkadot. Unlike true TestNets, however, the Kusama KSM native token does have economic value. This incentive encourages paricipants to maintain this robust and performant structure for the benefit of the community.
648+
Kusama is a network built as a risk-taking, fast-moving "canary in the coal mine" for its cousin Polkadot. As it is built on top of the same infrastructure, Kusama often acts as a final testing ground for new features before they are launched on Polkadot. Unlike true TestNets, however, the Kusama KSM native token does have economic value. This incentive encourages participants to maintain this robust and performant structure for the benefit of the community.
649649

650650
=== "Network Details"
651651

@@ -5146,7 +5146,7 @@ These on-chain collectives will play essential roles in the future of network st
51465146

51475147
Before parachains, the only way to design a bridge was to put the logic onto the relay chain. Since both networks now support parachains and the isolation they provide, each network can have a parachain dedicated to bridges.
51485148

5149-
The Bridge Hub system parachain operates on the relay chain, and is responsible for faciliating bridges to the wider Web3 space. It contains the required bridge [pallets](/polkadot-protocol/glossary/#pallet){target=\_blank} in its runtime, which enable trustless bridging with other blockchain networks like Polkadot, Kusama, and Ethereum. The Bridge Hub uses the native token of the relay chain.
5149+
The Bridge Hub system parachain operates on the relay chain, and is responsible for facilitating bridges to the wider Web3 space. It contains the required bridge [pallets](/polkadot-protocol/glossary/#pallet){target=\_blank} in its runtime, which enable trustless bridging with other blockchain networks like Polkadot, Kusama, and Ethereum. The Bridge Hub uses the native token of the relay chain.
51505150

51515151
See the [Bridge Hub](/polkadot-protocol/architecture/system-chains/bridge-hub/){target=\_blank} documentation for additional information.
51525152

@@ -5436,7 +5436,7 @@ In the Polkadot ecosystem, account balances are categorized into different types
54365436

54375437
The five main balance types are:
54385438

5439-
- **Free balance**: Represents the total tokens available to the account for any on-chain activity, including staking, governance, and voting. However, it may not be fully spendable or transferrable if portions of it are locked or reserved.
5439+
- **Free balance**: Represents the total tokens available to the account for any on-chain activity, including staking, governance, and voting. However, it may not be fully spendable or transferable if portions of it are locked or reserved.
54405440
- **Locked balance**: Portions of the free balance that cannot be spent or transferred because they are tied up in specific activities like [staking](https://wiki.polkadot.network/learn/learn-staking/#nominating-validators){target=\_blank}, [vesting](https://wiki.polkadot.network/learn/learn-guides-transfers/#vested-transfers-with-the-polkadot-js-ui){target=\_blank}, or participating in [governance](https://wiki.polkadot.network/learn/learn-polkadot-opengov/#voting-on-a-referendum){target=\_blank}. While the tokens remain part of the free balance, they are non-transferable for the duration of the lock.
54415441
- **Reserved balance**: Funds locked by specific system actions, such as setting up an [identity](https://wiki.polkadot.network/learn/learn-identity/){target=\_blank}, creating [proxies](https://wiki.polkadot.network/learn/learn-proxies/){target=\_blank}, or submitting [deposits for governance proposals](https://wiki.polkadot.network/learn/learn-guides-polkadot-opengov/#claiming-opengov-deposits){target=\_blank}. These tokens are not part of the free balance and cannot be spent unless they are unreserved.
54425442
- **Spendable balance**: The portion of the free balance that is available for immediate spending or transfers. It is calculated by subtracting the maximum of locked or reserved amounts from the free balance, ensuring that existential deposit limits are met.
@@ -5467,7 +5467,7 @@ Consider an example where an account has 80 DOT locked for both staking and gove
54675467
- 24 DOT is locked for governance with a 1x conviction and a 7-day lock period.
54685468
- 4 DOT is locked for governance with a 6x conviction and a 224-day lock period.
54695469

5470-
In this case, the total locked amount is 80 DOT because only the largest lock (80 DOT from staking) governs the locked balance. These 80 DOT will be released at different times based on the lock durations. In this example, the 24 DOT locked for governance will be released first since the shortest lock period is seven days. The 80 DOT stake with a 28-day lock period is released next. Now, all that remains locked is the 4 DOT for governance. After 224 days, all 80 DOT (minus the existential deposit) will be free and transferrable.
5470+
In this case, the total locked amount is 80 DOT because only the largest lock (80 DOT from staking) governs the locked balance. These 80 DOT will be released at different times based on the lock durations. In this example, the 24 DOT locked for governance will be released first since the shortest lock period is seven days. The 80 DOT stake with a 28-day lock period is released next. Now, all that remains locked is the 4 DOT for governance. After 224 days, all 80 DOT (minus the existential deposit) will be free and transferable.
54715471

54725472
![Illustration of Lock Example](/images/polkadot-protocol/parachain-basics/accounts/locks-example-2.webp)
54735473

@@ -5485,15 +5485,15 @@ The most common balance types displayed on Polkadot.js are:
54855485

54865486
- **Total balance**: The total number of tokens available in the account. This includes all tokens, whether they are transferable, locked, reserved, or vested. However, the total balance does not always reflect what can be spent immediately. In this example, the total balance is 0.6274 KSM.
54875487

5488-
- **Transferrable balance**: Shows how many tokens are immediately available for transfer. It is calculated by subtracting the locked and reserved balances from the total balance. For example, if an account has a total balance of 0.6274 KSM and a transferrable balance of 0.0106 KSM, only the latter amount can be sent or spent freely.
5488+
- **Transferable balance**: Shows how many tokens are immediately available for transfer. It is calculated by subtracting the locked and reserved balances from the total balance. For example, if an account has a total balance of 0.6274 KSM and a transferable balance of 0.0106 KSM, only the latter amount can be sent or spent freely.
54895489

54905490
- **Vested balance**: Tokens that allocated to the account but released according to a specific schedule. Vested tokens remain locked and cannot be transferred until fully vested. For example, an account with a vested balance of 0.2500 KSM means that this amount is owned but not yet transferable.
54915491

54925492
- **Locked balance**: Tokens that are temporarily restricted from being transferred or spent. These locks typically result from participating in staking, governance, or vested transfers. In Polkadot.js, locked balances do not stack—only the largest lock is applied. For instance, if an account has 0.5500 KSM locked for governance and staking, the locked balance would display 0.5500 KSM, not the sum of all locked amounts.
54935493

54945494
- **Reserved balance**: Refers to tokens locked for specific on-chain actions, such as setting an identity, creating a proxy, or making governance deposits. Reserved tokens are not part of the free balance, but can be freed by performing certain actions. For example, removing an identity would unreserve those funds.
54955495

5496-
- **Bonded balance**: The tokens locked for staking purposes. Bonded tokens are not transferrable until they are unbonded after the unbonding period.
5496+
- **Bonded balance**: The tokens locked for staking purposes. Bonded tokens are not transferable until they are unbonded after the unbonding period.
54975497

54985498
- **Redeemable balance**: The number of tokens that have completed the unbonding period and are ready to be unlocked and transferred again. For example, if an account has a redeemable balance of 0.1000 KSM, those tokens are now available for spending.
54995499

0 commit comments

Comments
 (0)