Skip to content

docs: Fix document content errors #2184

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 7 additions & 7 deletions content/md/en/docs/quick-start/start-a-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ Before you begin, verify the following:
1. Clone the node template repository by running the following command:

```sh
git clone https://github.com/substrate-developer-hub/substrate-node-template
git clone https://github.com/paritytech/polkadot-sdk-solochain-template
```

This command clones the `main` branch.

Optionally, you can use the `--branch` command-line option and a [tag](https://github.com/substrate-developer-hub/substrate-node-template/tags) to specify a version of Polkadot you want the node to be compatible with.
Optionally, you can use the `--branch` command-line option and a [tag](https://github.com/paritytech/polkadot-sdk-solochain-template/tags) to specify a version of Polkadot you want the node to be compatible with.

2. Change to the root of the cloned directory:

```sh
cd substrate-node-template
cd polkadot-sdk-solochain-template
```

3. Create a new branch to save your work by running a command similar to the following:
Expand All @@ -60,7 +60,7 @@ Before you begin, verify the following:
4. Compile the node template:

```sh
cargo build --package node-template --release
cargo build --release
```

The first time you compile the node, it can take some time to complete.
Expand All @@ -75,7 +75,7 @@ Before you begin, verify the following:
1. Verify that your node is ready to use and see information about the command-line options available by running the following command:

```sh
./target/release/node-template --help
./target/release/solochain-template-node --help
```

The usage information displays the command-line options you can use to:
Expand All @@ -87,7 +87,7 @@ Before you begin, verify the following:
1. View account information for the predefined `Alice` development account by running the following command:

```sh
./target/release/node-template key inspect //Alice
./target/release/solochain-template-node key inspect //Alice
```

The command displays the following account and address information:
Expand All @@ -111,7 +111,7 @@ Before you begin, verify the following:
1. Start the node in development mode by running the following command:

```sh
./target/release/node-template --dev
./target/release/solochain-template-node --dev
```

In development mode, the chain doesn't require any peer computers to finalize blocks.
Expand Down