Skip to content

Commit

Permalink
docs: fix typos (paritytech#2193)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuittont60 authored Nov 7, 2023
1 parent e5a854e commit 24f6bfe
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions substrate/bin/utils/subkey/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ The output above shows a **secret phrase** (also called **mnemonic phrase**) and
**Private Key**). Those 2 secrets are the pieces of information you MUST keep safe and secret. All the other information
below can be derived from those secrets.

The output above also show the **public key** and the **Account ID**. Those are the independant from the network where
The output above also show the **public key** and the **Account ID**. Those are the independent from the network where
you will use the key.

The **SS58 address** (or **Public Address**) of a new account is a reprensentation of the public keys of an account for
Expand Down Expand Up @@ -163,7 +163,7 @@ This time, we properly recovered `5He5pZpc7AJ8evPuab37vJF6KkFDqq9uDq2WXh877Qw6ia

### Inspecting a key

If you have *some data* about a key, `subkey inpsect` will help you discover more information about it.
If you have *some data* about a key, `subkey inspect` will help you discover more information about it.

If you have **secrets** that you would like to verify for instance, you can use:

Expand Down
4 changes: 2 additions & 2 deletions substrate/client/consensus/beefy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ shortcuts:
## Mental Model

BEEFY should be considered as an extra voting round done by GRANDPA validators for the current
best finalized block. Similarily to how GRANDPA is lagging behind best produced (non-finalized)
best finalized block. Similarly to how GRANDPA is lagging behind best produced (non-finalized)
block, BEEFY is going to lag behind best GRANDPA (finalized) block.

```
Expand Down Expand Up @@ -302,7 +302,7 @@ periodically on the global topic. Let's now dive into description of the message

## Misbehavior

Similarily to other PoS protocols, BEEFY considers casting two different votes in the same round a
Similarly to other PoS protocols, BEEFY considers casting two different votes in the same round a
misbehavior. I.e. for a particular `round_number`, the validator produces signatures for 2 different
`Commitment`s and broadcasts them. This is called **equivocation**.

Expand Down
2 changes: 1 addition & 1 deletion substrate/client/transaction-pool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ transactions that are prepared for block inclusion. Propagation is best
effort, especially for block authors and is not directly incentivised.
However the networking protocol might penalise peers that send invalid or
useless transactions so we should be nice to others. Also see below a proposal
to instead of gossiping everyting have other peers request transactions they
to instead of gossiping everything have other peers request transactions they
are interested in.

Since the pool is expected to store more transactions than what can fit
Expand Down
2 changes: 1 addition & 1 deletion substrate/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ board](https://github.com/paritytech/substrate/discussions).
* Allow validators to block and kick their nominator set. (#7930)
* Decouple Staking and Election - Part1: Support traits (#7908)
* Introduces account existence providers reference counting (#7363)
* contracts: Cap the surcharge reward by the amount of rent that way payed by a contract (#7870)
* contracts: Cap the surcharge reward by the amount of rent that way paid by a contract (#7870)
* Use checked math when calculating storage size (#7885)
* Fix clear prefix check to avoid erasing child trie roots. (#7848)
* contracts: Collect rent for the first block during deployment (#7847)
Expand Down
2 changes: 1 addition & 1 deletion substrate/docs/Upgrading-2.0-to-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ And update the overall definition for weights on frame and a few related types a
```diff=
-const AVERAGE_ON_INITIALIZE_WEIGHT: Perbill = Perbill::from_percent(10);
+/// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.
+/// We assume that ~10% of the block weight is consumed by `on_initialize` handlers.
+/// This is used to limit the maximal weight of a single extrinsic.
+const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10);
+/// We allow `Normal` extrinsics to fill up the block up to 75%, the rest can be used
Expand Down
2 changes: 1 addition & 1 deletion substrate/frame/root-testing/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Root Testing Pallet

Pallet that contains extrinsics that can be usefull in testing.
Pallet that contains extrinsics that can be useful in testing.

NOTE: This pallet should only be used for testing purposes and should not be used in production runtimes!
2 changes: 1 addition & 1 deletion substrate/primitives/maybe-compressed-blob/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Handling of blobs, typicaly validation code, which may be compressed.
Handling of blobs, typically validation code, which may be compressed.

License: Apache-2.0
2 changes: 1 addition & 1 deletion substrate/test-utils/runtime/res/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ comparing keys, not the values.
`renamed_authorities`.


`default_genesis_config_invalid.json` is just an imcomplete copy of
`default_genesis_config_invalid.json` is just an incomplete copy of
`default_genesis_config.json` with `babe::authorities` field removed.

0 comments on commit 24f6bfe

Please sign in to comment.