Skip to content
This repository was archived by the owner on Aug 27, 2024. It is now read-only.

Commit 0bab302

Browse files
wheresaddieapopiak
authored andcommitted
Update index.md (#768)
edits
1 parent ef60390 commit 0bab302

File tree

1 file changed

+8
-8
lines changed
  • docs/tutorials/runtime-migration

1 file changed

+8
-8
lines changed

docs/tutorials/runtime-migration/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Introduction
2+
Introduction
33
---
44

5-
One of the defining features of the Substrate blockchain development framework is its support for
5+
One of the defining features of the Substrate blockchain development framework is the support for
66
**forkless runtime upgrades**. Forkless upgrades are a means of enhancing a blockchain runtime in a
7-
way that is supported and protected by the capabilities of the blockchain itself. A blockchain's
7+
way that supports and protects the capabilities of the blockchain itself. A blockchain's
88
[runtime](../../knowledgebase/runtime) defines the [state](../../knowledgebase/runtime/storage) the
99
blockchain can hold and also defines the logic for effecting changes to that state. Substrate makes
1010
it possible to deploy enhanced runtime capabilities (including _breaking_ changes) without a
1111
[hard fork](../../knowledgebase/getting-started/glossary#fork). These new capabilities expect the
12-
blockchain's state and storage schema to be configured in the correct way for operation, though.
13-
If the expected schema and state are not present a [storage migration](../../knowledgebase/runtime/upgrades.md#storage-migrations) is necessary.
12+
blockchain state and storage schema to be configured in the correct way for operation.
13+
If the expected schema and state are not present, a [storage migration](../../knowledgebase/runtime/upgrades.md#storage-migrations) is necessary.
1414

15-
This tutorial will use the Substrate Developer Hub
15+
This tutorial will use the Substrate
1616
[Node Template](https://github.com/substrate-developer-hub/substrate-node-template) to explore how to write and perform storage migrations of [FRAME](../../knowledgebase/runtime/frame)-based runtimes.
1717
> TODO: outline of steps
1818
@@ -33,8 +33,8 @@ will guide you through the process of setting up your development environment. T
3333
system for runtime development and guide you through the process of extending the capabilities of a
3434
FRAME runtime by adding a pallet. The [Perform a Forkless Upgrade](../../tutorials/upgrade-a-chain/) tutorial will introduce runtime upgrades.
3535

36-
If you're an experienced developer and wish to skip those
37-
tutorials, you can clone the
36+
If you're a more experienced developer and wish to skip those
37+
tutorials, you can clone the
3838
[Node Template repository](https://github.com/substrate-developer-hub/substrate-node-template) and
3939
refer to the
4040
[documentation for local development](https://github.com/substrate-developer-hub/substrate-node-template#local-development).

0 commit comments

Comments
 (0)