Skip to content

Commit

Permalink
Merge pull request #155 from davidsemakula/main
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
CrackTheCode016 authored Jan 10, 2024
2 parents a9baa60 + 5fc6907 commit e8dd29f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/Substrate/section2/substrate-runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ environment.
## The Outer Node

The outer node refers to the portion of a Substrate node that deals with peer-to-peer networking and
receiving new incoming from nodes. Using **host functions**, it can pass this data as an opaque blob
that is then decoded and processed by the runtime, where it is then stored in the underlying storage
layer.
receiving new incoming requests from nodes. Using **host functions**, it can pass this data as an
opaque blob that is then decoded and processed by the runtime, where it is then stored in the
underlying storage layer.
2 changes: 1 addition & 1 deletion docs/Substrate/section5/coupling-balances.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ We can now access any type within our configuration, per `T: Config`.

### Type breakdown: `BalanceOf<T>`

At the type of the file, you notice a type alias that uses the `Currency` trait as well:
At the top of the file, you notice a type alias that uses the `Currency` trait as well:

```rust
type BalanceOf<T> =
Expand Down
2 changes: 1 addition & 1 deletion docs/Substrate/section5/dispatchable.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: Creating dispatchable functions for our pallet.
---

With all of our tools in place to register a user, let's go through the process of adequately
registering them via an **extrinsic**or state change.
registering them via an **extrinsic** or state change.

:::info What is an extrinsic again?

Expand Down
2 changes: 1 addition & 1 deletion docs/Substrate/section7/blockchain-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It is important to abide by the general rule of thumb of **"not rolling your own
established or community-approved algorithms.

Whether it is apparent or not, all blockchain-based systems rely heavily on various cryptographic
methods to track, verify, and provide the integrity blockchains intrisically offer.
methods to track, verify, and provide the integrity blockchains intrinsically offer.

As we've seen with the `StorageMap` implementation, we used the Blake2 hashing algorithm to hash our
storage keys, or more important; we require an extrinsic to be a cryptographically valid, signed
Expand Down

0 comments on commit e8dd29f

Please sign in to comment.