diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 7ac09a3..47dcbdd 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -1,30 +1,30 @@ # The Rust Programming Language -- [Introduction](ch01-01-introduction.md) - - [Installation](ch01-02-installation.md) - - [Hello, World!](ch01-03-hello-world.md) +- [Introduction](ch01-00-introduction.md) + - [Installation](ch01-01-installation.md) + - [Hello, World!](ch01-02-hello-world.md) -- [Guessing Game Tutorial](ch02-01-guessing-game-tutorial.md) +- [Guessing Game Tutorial](ch02-00-guessing-game-tutorial.md) -- [Understanding Ownership](ch03-01-understanding-ownership.md) - - [Ownership](ch03-02-ownership.md) - - [References & Borrowing](ch03-03-references-and-borrowing.md) - - [Slices](ch03-04-slices.md) +- [Understanding Ownership](ch03-00-understanding-ownership.md) + - [Ownership](ch03-01-ownership.md) + - [References & Borrowing](ch03-02-references-and-borrowing.md) + - [Slices](ch03-03-slices.md) -- [Up and Running](ch04-01-up-and-running.md) - - [Anatomy of a Rust Program](ch04-02-anatomy-of-a-rust-program.md) - - [Variable Bindings in Detail](ch04-03-variable-bindings-in-detail.md) - - [Data Types in Rust](ch04-04-data-types-in-rust.md) - - [How Functions Work](ch04-05-how-functions-work.md) - - [Comments](ch04-06-comments.md) - - [Control Flow](ch04-07-control-flow.md) +- [Up and Running](ch04-00-up-and-running.md) + - [Anatomy of a Rust Program](ch04-01-anatomy-of-a-rust-program.md) + - [Variable Bindings in Detail](ch04-02-variable-bindings-in-detail.md) + - [Data Types in Rust](ch04-03-data-types-in-rust.md) + - [How Functions Work](ch04-04-how-functions-work.md) + - [Comments](ch04-05-comments.md) + - [Control Flow](ch04-06-control-flow.md) -- [Structs](ch05-01-structs.md) - - [Method Syntax](ch05-02-method-syntax.md) - - [Generics](ch05-03-generics.md) +- [Structs](ch05-00-structs.md) + - [Method Syntax](ch05-01-method-syntax.md) + - [Generics](ch05-02-generics.md) -- [Enums](ch06-01-enums.md) - - [Option](ch06-02-option.md) - - [Match](ch06-03-match.md) - - [Patterns](ch06-04-patterns.md) - - [if let](ch06-05-if-let.md) +- [Enums](ch06-00-enums.md) + - [Option](ch06-01-option.md) + - [Match](ch06-02-match.md) + - [Patterns](ch06-03-patterns.md) + - [if let](ch06-04-if-let.md) diff --git a/src/ch01-01-introduction.md b/src/ch01-00-introduction.md similarity index 100% rename from src/ch01-01-introduction.md rename to src/ch01-00-introduction.md diff --git a/src/ch01-02-installation.md b/src/ch01-01-installation.md similarity index 100% rename from src/ch01-02-installation.md rename to src/ch01-01-installation.md diff --git a/src/ch01-03-hello-world.md b/src/ch01-02-hello-world.md similarity index 100% rename from src/ch01-03-hello-world.md rename to src/ch01-02-hello-world.md diff --git a/src/ch02-01-guessing-game-tutorial.md b/src/ch02-00-guessing-game-tutorial.md similarity index 100% rename from src/ch02-01-guessing-game-tutorial.md rename to src/ch02-00-guessing-game-tutorial.md diff --git a/src/ch03-01-understanding-ownership.md b/src/ch03-00-understanding-ownership.md similarity index 100% rename from src/ch03-01-understanding-ownership.md rename to src/ch03-00-understanding-ownership.md diff --git a/src/ch03-02-ownership.md b/src/ch03-01-ownership.md similarity index 100% rename from src/ch03-02-ownership.md rename to src/ch03-01-ownership.md diff --git a/src/ch03-03-references-and-borrowing.md b/src/ch03-02-references-and-borrowing.md similarity index 100% rename from src/ch03-03-references-and-borrowing.md rename to src/ch03-02-references-and-borrowing.md diff --git a/src/ch03-04-slices.md b/src/ch03-03-slices.md similarity index 100% rename from src/ch03-04-slices.md rename to src/ch03-03-slices.md diff --git a/src/ch04-01-up-and-running.md b/src/ch04-00-up-and-running.md similarity index 100% rename from src/ch04-01-up-and-running.md rename to src/ch04-00-up-and-running.md diff --git a/src/ch04-02-anatomy-of-a-rust-program.md b/src/ch04-01-anatomy-of-a-rust-program.md similarity index 100% rename from src/ch04-02-anatomy-of-a-rust-program.md rename to src/ch04-01-anatomy-of-a-rust-program.md diff --git a/src/ch04-03-variable-bindings-in-detail.md b/src/ch04-02-variable-bindings-in-detail.md similarity index 100% rename from src/ch04-03-variable-bindings-in-detail.md rename to src/ch04-02-variable-bindings-in-detail.md diff --git a/src/ch04-04-data-types-in-rust.md b/src/ch04-03-data-types-in-rust.md similarity index 100% rename from src/ch04-04-data-types-in-rust.md rename to src/ch04-03-data-types-in-rust.md diff --git a/src/ch04-05-how-functions-work.md b/src/ch04-04-how-functions-work.md similarity index 100% rename from src/ch04-05-how-functions-work.md rename to src/ch04-04-how-functions-work.md diff --git a/src/ch04-06-comments.md b/src/ch04-05-comments.md similarity index 100% rename from src/ch04-06-comments.md rename to src/ch04-05-comments.md diff --git a/src/ch04-07-control-flow.md b/src/ch04-06-control-flow.md similarity index 100% rename from src/ch04-07-control-flow.md rename to src/ch04-06-control-flow.md diff --git a/src/ch05-01-structs.md b/src/ch05-00-structs.md similarity index 100% rename from src/ch05-01-structs.md rename to src/ch05-00-structs.md diff --git a/src/ch05-02-method-syntax.md b/src/ch05-01-method-syntax.md similarity index 100% rename from src/ch05-02-method-syntax.md rename to src/ch05-01-method-syntax.md diff --git a/src/ch05-03-generics.md b/src/ch05-02-generics.md similarity index 100% rename from src/ch05-03-generics.md rename to src/ch05-02-generics.md diff --git a/src/ch06-01-enums.md b/src/ch06-00-enums.md similarity index 100% rename from src/ch06-01-enums.md rename to src/ch06-00-enums.md diff --git a/src/ch06-02-option.md b/src/ch06-01-option.md similarity index 100% rename from src/ch06-02-option.md rename to src/ch06-01-option.md diff --git a/src/ch06-03-match.md b/src/ch06-02-match.md similarity index 100% rename from src/ch06-03-match.md rename to src/ch06-02-match.md diff --git a/src/ch06-04-patterns.md b/src/ch06-03-patterns.md similarity index 100% rename from src/ch06-04-patterns.md rename to src/ch06-03-patterns.md diff --git a/src/ch06-05-if-let.md b/src/ch06-04-if-let.md similarity index 100% rename from src/ch06-05-if-let.md rename to src/ch06-04-if-let.md