Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: typos #49

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/frame/dynamic-fee.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ the functionality of Ethereum dynamic fee adjustment.
The pallet works by keeping track of the current minimum gas price in a
Substrate storage `MinGasPrice`. Each Substrate block, the proposer can submit
an inherent extrinsic `note_min_gas_price_target`. When a block is built, the
minimum gas price is adjusted similar to Ethereum's algorithm.
minimum gas price is adjusted similarly to Ethereum's algorithm.

## Usage

Expand Down Expand Up @@ -42,4 +42,4 @@ fn inherent_data_providers(

Ok(inherent_data_providers)
}
```
```
2 changes: 1 addition & 1 deletion docs/node-template-release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Frontier Node Template Release Process

> NOTE: this based on the
> NOTE: this is based on the
> [Subtrate node template release process](https://github.com/paritytech/substrate/blob/master/docs/node-template-release.md) -

1. Clone and checkout the `main` branch of the
Expand Down
4 changes: 2 additions & 2 deletions docs/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ independently.
## EVM execution only

In many situations, a Substrate blockchain may only want to include
EVM execution capatibilities. In this way, it functions similarly to
EVM execution capabilities. In this way, it functions similarly to
`pallet-contracts`, integrates with Substrate better and is less
intrusive. The module, and its EVM execution capatibilties, can be
intrusive. The module, and its EVM execution capabilities, can be
added or removed at any moment via forkless upgrades. With EVM
execution only, Substrate uses its account model fully and signs
transactions on behalf of EVM accounts.
Expand Down