From a3e3939d42cf1bfa019186da2033f289f51ca728 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=89lo=C3=AFs?= <c@elo.tf>
Date: Thu, 29 Sep 2022 15:45:13 +0200
Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s)

---
 docs/dev/beginner-walkthrough.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/dev/beginner-walkthrough.md b/docs/dev/beginner-walkthrough.md
index 886119552..e3bb5678d 100644
--- a/docs/dev/beginner-walkthrough.md
+++ b/docs/dev/beginner-walkthrough.md
@@ -52,7 +52,7 @@ cargo build
 This will take about **2 minutes** to download dependencies plus between 5 and **15 minutes** to build in debug mode depending on the power of your processor. At this point, you built the *substrate client* (a kind of "shell" in which lies the runtime) and the default *runtime* itself. You can run a local blockchain with:
 
 ```bash
-cargo run -- --dev --tmp # here, --dev means --chain=gdev which selects the gdev runtime
+cargo run -- --dev --tmp # here, --dev means --chain=dev which selects the gdev runtime
 ```
 
 When you see the logs, the blockchain is running and you can connect to it with polkadotjs app: [https://polkadot.js.org/apps/?rpc=ws://127.0.0.1:9944](https://polkadot.js.org/apps/?rpc=ws%3A%2F%2F127.0.0.1%3A9944). You should see blocks being added every 6 seconds. You can use Alice, Bob, etc test accounts to submit extrinsics.
-- 
GitLab