Skip to content

Commit 6b8859a

Browse files
omahsTarekkMA
authored andcommitted
chore: fix typos (paritytech#4590)
chore: fix typos
1 parent 41c58dd commit 6b8859a

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

bridges/docs/running-relayer.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ your transactions that are **validated** on top of block, where it is active get
139139
becomes expired when the block with the number you have specified during registration is "mined". It is the
140140
`validTill` parameter of the `register` call (see below). After that `validTill` block, you may unregister and get
141141
your reserved funds back. There's also an intermediate point between those blocks - it is the `validTill - LEASE`,
142-
where `LEASE` is the the chain constant, controlled by the governance. Initially it is set to `300` blocks.
142+
where `LEASE` is the chain constant, controlled by the governance. Initially it is set to `300` blocks.
143143
All your transactions, **validated** between the `validTill - LEASE` and `validTill` blocks do not get the
144144
priority boost. Also, it is forbidden to specify `validTill` such that the `validTill - currentBlock` is less
145145
than the `LEASE`.
@@ -156,7 +156,7 @@ than the `LEASE`.
156156
| 700 | Inactive | Your message delivery transactions are not boosted |
157157
| 701 | Inactive | Your message delivery transactions are not boosted |
158158
| ... | Inactive | Your message delivery transactions are not boosted |
159-
| 1000 | Expired | Your may submit a tx with the `deregister` call |
159+
| 1000 | Expired | You may submit a tx with the `deregister` call |
160160

161161
</details>
162162

@@ -230,7 +230,7 @@ your relayer account. Then:
230230

231231
- set the `bridgedChainId` to `bhpd`;
232232

233-
- check the both variants of the `owner` field: `ThisChain` is used to pay for message delivery transactions
233+
- check both variants of the `owner` field: `ThisChain` is used to pay for message delivery transactions
234234
and `BridgedChain` is used to pay for message confirmation transactions.
235235

236236
If check shows that you have some rewards, you can craft the claim transaction, with similar parameters.

docs/RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ variable.
4545

4646
## Westend & Rococo
4747

48-
For the these networks, in addition to incrementing the `Cargo.toml` version we also increment the `spec_version` and
48+
For these networks, in addition to incrementing the `Cargo.toml` version we also increment the `spec_version` and
4949
sometimes the `transaction_version`. The spec version is also following the node version. Its schema is: `M_mmm_ppp` and
5050
for example `1_002_000` is the node release `1.2.0`. This versioning has no further meaning, and is only done to map
5151
from an on chain `spec_version` easily to the release in this repository.

polkadot/roadmap/implementers-guide/src/runtime/scheduler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Scheduler Pallet
22

33
> TODO: this section is still heavily under construction. key questions about availability cores and validator
4-
> assignment are still open and the flow of the the section may be contradictory or inconsistent
4+
> assignment are still open and the flow of the section may be contradictory or inconsistent
55
66
The Scheduler module is responsible for two main tasks:
77

prdoc/schema_user.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
},
219219
"doc": {
220220
"type": "object",
221-
"description": "You have the the option to provide different description of your PR for different audiences.",
221+
"description": "You have the option to provide different description of your PR for different audiences.",
222222
"additionalProperties": false,
223223
"properties": {
224224
"audience": {

substrate/bin/utils/subkey/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The output above shows a **secret phrase** (also called **mnemonic phrase**) and
7474
**Private Key**). Those 2 secrets are the pieces of information you MUST keep safe and secret. All the other information
7575
below can be derived from those secrets.
7676

77-
The output above also show the **public key** and the **Account ID**. Those are the independent from the network where
77+
The output above also shows the **public key** and the **Account ID**. Those are the independent from the network where
7878
you will use the key.
7979

8080
The **SS58 address** (or **Public Address**) of a new account is a representation of the public keys of an account for
@@ -152,7 +152,7 @@ subkey inspect "soup lyrics media market way crouch elevator put moon useful que
152152

153153
which recovers the account `5Fe4sqj2K4fRuzEGvToi4KATqZfiDU7TqynjXG6PZE2dxwyh` and not
154154
`5He5pZpc7AJ8evPuab37vJF6KkFDqq9uDq2WXh877Qw6iaVC` as we expected. The additional user-defined **password**
155-
(`extra_secret` in our example) is now required to fully recover the account. Let's inspect the the previous mnemonic,
155+
(`extra_secret` in our example) is now required to fully recover the account. Let's inspect the previous mnemonic,
156156
this time passing also the required `password` as shown below:
157157

158158
```bash

substrate/client/transaction-pool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pool, it's broadcasting status, block inclusion, finality, etc.
4949

5050
## Transaction Validity details
5151

52-
Information retrieved from the the runtime are encapsulated in the `TransactionValidity`
52+
Information retrieved from the runtime are encapsulated in the `TransactionValidity`
5353
type.
5454

5555
```rust

substrate/frame/contracts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Contracts can emit messages to the client when called as RPC through the
112112
API. This is exposed in [ink!](https://use.ink) via
113113
[`ink_env::debug_message()`](https://paritytech.github.io/ink/ink_env/fn.debug_message.html).
114114

115-
Those messages are gathered into an internal buffer and sent to the RPC client. It is up the the individual client if
115+
Those messages are gathered into an internal buffer and sent to the RPC client. It is up to the individual client if
116116
and how those messages are presented to the user.
117117

118118
This buffer is also printed as a debug message. In order to see these messages on the node console the log level for the

substrate/utils/frame/benchmarking-cli/src/overhead/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The complete command for Polkadot looks like this:
108108
cargo run --profile=production -- benchmark overhead --chain=polkadot-dev --wasm-execution=compiled --weight-path=runtime/polkadot/constants/src/weights/
109109
```
110110

111-
This will overwrite the the
111+
This will overwrite the
112112
[block_weights.rs](https://github.com/paritytech/polkadot/blob/c254e5975711a6497af256f6831e9a6c752d28f5/runtime/polkadot/constants/src/weights/block_weights.rs)
113113
and
114114
[extrinsic_weights.rs](https://github.com/paritytech/polkadot/blob/c254e5975711a6497af256f6831e9a6c752d28f5/runtime/polkadot/constants/src/weights/extrinsic_weights.rs)

0 commit comments

Comments
 (0)