From e7076af00f836b0398fc8667ff59b339dd97b9c2 Mon Sep 17 00:00:00 2001 From: Nicole L Date: Wed, 21 Feb 2024 13:54:11 -0800 Subject: [PATCH] Move hello world example to second section (#1838) The current location for the hello world example is awkward since the two surrounding pages are both talking about Rust from a high level without talking about syntax at all. I think starting the second section (types and values) with the hello world example would help the first section flow more smoothly. --- src/SUMMARY.md | 2 +- src/{hello-world => types-and-values}/hello-world.md | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{hello-world => types-and-values}/hello-world.md (100%) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index a0337da6d87..17d51fccf6f 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -18,10 +18,10 @@ - [Welcome](welcome-day-1.md) - [Hello, World](hello-world.md) - [What is Rust?](hello-world/what-is-rust.md) - - [Hello, World](hello-world/hello-world.md) - [Benefits of Rust](hello-world/benefits.md) - [Playground](hello-world/playground.md) - [Types and Values](types-and-values.md) + - [Hello, World](types-and-values/hello-world.md) - [Variables](types-and-values/variables.md) - [Values](types-and-values/values.md) - [Arithmetic](types-and-values/arithmetic.md) diff --git a/src/hello-world/hello-world.md b/src/types-and-values/hello-world.md similarity index 100% rename from src/hello-world/hello-world.md rename to src/types-and-values/hello-world.md