Skip to content

Commit 673afec

Browse files
authored
Improved english? (#2116)
* Update transaction-lifecycle.md * Update transaction-lifecycle.md * Update transaction-lifecycle.md * Update accounts-addresses-keys.md * Update accounts-addresses-keys.md
1 parent 3f3a676 commit 673afec

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

content/md/en/docs/learn/accounts-addresses-keys.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The secret seed phrase is important because it can be used to recover access to
2020

2121
For most networks, the **public key** associated with an account is how that account is identified on the network and some form of it is used as the destination address for transactions.
2222
However, Substrate-based chains use the underlying public key to derive one or more **public addresses**.
23-
Instead of using the public key directly, Substrate allows you generate multiple addresses and address formats for an account.
23+
Instead of using the public key directly, Substrate allows you to generate multiple addresses and address formats for an account.
2424

2525
## Address encoding and chain-specific addresses
2626

@@ -74,7 +74,7 @@ For more information about working with generic types, see [Rust for Substrate](
7474

7575
## Specialized accounts
7676

77-
As a flexible and module framework for blockchain development, Substrate itself doesn't require you define or use any specific type of accounts.
77+
As a flexible and module framework for blockchain development, Substrate itself doesn't require you to define or use any specific type of accounts.
7878
However, different chains can implement different rules for how accounts and the keys that control them are used.
7979
For example, you might implement specialized accounts if your application requires:
8080

content/md/en/docs/learn/transaction-lifecycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ If a transaction is invalid—for example, because it is too large or doesn't co
8181
A transaction might be rejected for any of the following reasons:
8282

8383
- The transaction has already been included in a block so it is dropped from the verifying queue.
84-
- The transaction's signature is invalid, so it is immediately be rejected.
85-
- The transaction is too large to fit in the current block, so it is be put back in a queue for a new verification round.
84+
- The transaction's signature is invalid, so it is immediately rejected.
85+
- The transaction is too large to fit in the current block, so it is put back in a queue for a new verification round.
8686

8787
## Transactions ordered by priority
8888

@@ -136,7 +136,7 @@ Before committing any state changes to storage, the runtime logic should perform
136136

137137
Note that [events](/build/events-and-errors/) are also written to storage.
138138
Therefore, the runtime logic should not emit an event before performing the complementary actions.
139-
If a transaction fails after an event is emitted, the event is not be reverted.
139+
If a transaction fails after an event is emitted, the event is not reverted.
140140

141141
### Finalizing a block
142142

0 commit comments

Comments
 (0)