Rename files to match the nostarch structure more closely

This commit is contained in:
Carol (Nichols || Goulding) 2016-06-27 15:12:59 -06:00
parent 54c47de023
commit 475ecc7679
25 changed files with 43 additions and 43 deletions

View File

@ -1,98 +1,98 @@
# The Rust Programming Language # The Rust Programming Language
- [Introduction](introduction.md) - [Chapter 1 - Introduction](ch01-01-introduction.md)
- [Installation](installation.md) - [Installation](ch01-02-installation.md)
- [Hello, World!](hello-world.md) - [Hello, World!](ch01-03-hello-world.md)
- [The Design of Rust](design.md) - [The Design of Rust](ch01-04-design.md)
- [Tutorial]() - [Chapter 2 - Tutorial]()
- [Up and Running](up-and-running.md) - [Chapter 3 - Up and Running](ch03-01-up-and-running.md)
- [Variable Bindings](variable-bindings.md) - [Variable Bindings](ch03-02-variable-bindings.md)
- [Functions](functions.md) - [Functions](ch03-03-functions.md)
- [Scalar Types](scalar-types.md) - [Scalar Types](ch03-04-scalar-types.md)
- [Compound Types](compound-types.md) - [Compound Types](ch03-05-compound-types.md)
- [Comments](comments.md) - [Comments](ch03-06-comments.md)
- [Control flow with `if`](if.md) - [Control flow with `if`](ch03-06-if.md)
- [Loops](loops.md) - [Loops](ch03-07-loops.md)
- [Understanding Ownership](understanding-ownership.md) - [Chapter 4 - Understanding Ownership](ch04-01-understanding-ownership.md)
- [Ownership](ownership.md) - [Ownership](ch04-02-ownership.md)
- [References & Borrowing](references-and-borrowing.md) - [References & Borrowing](ch04-03-references-and-borrowing.md)
- [Slices](slices.md) - [Slices](ch04-04-slices.md)
- [Structs](structs.md) - [Chapter 5 - Structs](ch05-01-structs.md)
- [Method Syntax](method-syntax.md) - [Method Syntax](ch05-02-method-syntax.md)
- [Generics](generics.md) - [Generics](ch05-03-generics.md)
- [Advanced]() - [Advanced]()
- [Enums](enums.md) - [Chapter 6 - Enums](ch06-01-enums.md)
- [Option](option.md) - [Option](ch06-02-option.md)
- [Match](match.md) - [Match](ch06-03-match.md)
- [if let](if-let.md) - [if let](ch06-04-if-let.md)
- [Patterns](patterns.md) - [Patterns](ch06-05-patterns.md)
- [Crates & Modules]() - [Chapter 7 - Crates & Modules]()
- [Error Handling]() - [Chapter 8 - Error Handling]()
- [Basic Collections]() - [Chapter 9 - Basic Collections]()
- [Vectors]() - [Vectors]()
- [Strings]() - [Strings]()
- [`HashMap<K, V>`]() - [`HashMap<K, V>`]()
- [Lifetimes]() - [Chapter 10 - Lifetimes]()
- [Traits]() - [Chapter 11 - Traits]()
- [Closures]() - [Chapter 12 - Closures]()
- [Iterators]() - [Chapter 13 - Iterators]()
- [I/O]() - [Chapter 14 - I/O]()
- [`Read` & `Write`]() - [`Read` & `Write`]()
- [`std::fs`]() - [`std::fs`]()
- [`std::path`]() - [`std::path`]()
- [`std::env`]() - [`std::env`]()
- [Testing]() - [Chapter 15 - Testing]()
- [Smart Pointers]() - [Chapter 16 - Smart Pointers]()
- [`Deref`]() - [`Deref`]()
- [`Deref` coercions]() - [`Deref` coercions]()
- [`Box<T>`]() - [`Box<T>`]()
- [`Rc<T>`]() - [`Rc<T>`]()
- [Concurrency]() - [Chapter 17 - Concurrency]()
- [Threads]() - [Threads]()
- [`Send` & `Sync`]() - [`Send` & `Sync`]()
- [`Arc<T>`]() - [`Arc<T>`]()
- [`Mutex<T>`]() - [`Mutex<T>`]()
- [`Channels`]() - [`Channels`]()
- [Unsafe Rust]() - [Chapter 18 - Unsafe Rust]()
- [Raw Pointers]() - [Raw Pointers]()
- [transmute]() - [transmute]()
- [FFI]() - [Chapter 19 - FFI]()
- [Conditional Compilation]() - [Conditional Compilation]()
- [Bindings to C]() - [Bindings to C]()
- [Using Rust from Other Languages]() - [Using Rust from Other Languages]()
- [`static`]() - [`static`]()
- [Cargo]() - [Chapter 20 - Cargo]()
- [Crates.io]() - [Crates.io]()
- [Advanced Type System Features]() - [Chapter 21 - Advanced Type System Features]()
- [Associated Types]() - [Associated Types]()
- [Trait Objects]() - [Trait Objects]()
- [UFCS]() - [UFCS]()
- [Coherence]() - [Coherence]()
- [Interior mutability]() - [Chapter 22 - Interior mutability]()
- [`Cell<T>`]() - [`Cell<T>`]()
- [`RefCell<T>`]() - [`RefCell<T>`]()
- [Macros]() - [Chapter 23 - Macros]()
- [Nightly Rust]() - [Chapter 24 - Nightly Rust]()