Rename files since we decided errors is chapter 9

This commit is contained in:
Carol (Nichols || Goulding) 2016-08-31 11:05:58 -04:00
parent bd18fff64e
commit 6f3cf5c84c
4 changed files with 3 additions and 3 deletions

View File

@ -36,9 +36,9 @@
- [Strings]()
- [`HashMap<K, V>`]()
- [Error Handling](ch07-01-error-handling.md)
- [Unrecoverable errors with panic!](ch07-02-unrecoverable-errors-with-panic.md)
- [Recoverable errors with `Result<T, E>`](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<T, E>`](ch09-02-recoverable-errors-with-result.md)
- [Lifetimes]()