From 6f3cf5c84c59381b894713c924c8fa8a04f9160e Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Wed, 31 Aug 2016 11:05:58 -0400 Subject: [PATCH] Rename files since we decided errors is chapter 9 --- src/SUMMARY.md | 6 +++--- ...{ch07-01-error-handling.md => ch09-00-error-handling.md} | 0 ...-panic.md => ch09-01-unrecoverable-errors-with-panic.md} | 0 ...-result.md => ch09-02-recoverable-errors-with-result.md} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{ch07-01-error-handling.md => ch09-00-error-handling.md} (100%) rename src/{ch07-02-unrecoverable-errors-with-panic.md => ch09-01-unrecoverable-errors-with-panic.md} (100%) rename src/{ch07-03-recoverable-errors-with-result.md => ch09-02-recoverable-errors-with-result.md} (100%) diff --git a/src/SUMMARY.md b/src/SUMMARY.md index 1eb7961..2cd1912 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -36,9 +36,9 @@ - [Strings]() - [`HashMap`]() -- [Error Handling](ch07-01-error-handling.md) - - [Unrecoverable errors with panic!](ch07-02-unrecoverable-errors-with-panic.md) - - [Recoverable errors with `Result`](ch07-03-recoverable-errors-with-result.md) +- [Error Handling](ch09-00-error-handling.md) + - [Unrecoverable errors with panic!](ch09-01-unrecoverable-errors-with-panic.md) + - [Recoverable errors with `Result`](ch09-02-recoverable-errors-with-result.md) - [Lifetimes]() diff --git a/src/ch07-01-error-handling.md b/src/ch09-00-error-handling.md similarity index 100% rename from src/ch07-01-error-handling.md rename to src/ch09-00-error-handling.md diff --git a/src/ch07-02-unrecoverable-errors-with-panic.md b/src/ch09-01-unrecoverable-errors-with-panic.md similarity index 100% rename from src/ch07-02-unrecoverable-errors-with-panic.md rename to src/ch09-01-unrecoverable-errors-with-panic.md diff --git a/src/ch07-03-recoverable-errors-with-result.md b/src/ch09-02-recoverable-errors-with-result.md similarity index 100% rename from src/ch07-03-recoverable-errors-with-result.md rename to src/ch09-02-recoverable-errors-with-result.md