about summary refs log tree commit diff
path: root/src/doc/book
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-12-08 15:14:56 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-12-08 15:14:56 -0500
commitde39b2cada08fc60b4556054d2cdfb45375136a4 (patch)
tree8318f2af83ef71848dbfdb6aa93a72d15ed7222b /src/doc/book
parentacf4e0be22203213a5e42469deea4dc6e49da840 (diff)
downloadrust-de39b2cada08fc60b4556054d2cdfb45375136a4.tar.gz
rust-de39b2cada08fc60b4556054d2cdfb45375136a4.zip
Re-order the sections in TRPL
This ordering was significantly more confusing.
Diffstat (limited to 'src/doc/book')
-rw-r--r--src/doc/book/SUMMARY.md24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/doc/book/SUMMARY.md b/src/doc/book/SUMMARY.md
index 704bcf1587b..876a7399be9 100644
--- a/src/doc/book/SUMMARY.md
+++ b/src/doc/book/SUMMARY.md
@@ -5,18 +5,6 @@
     * [Guessing Game](guessing-game.md)
     * [Dining Philosophers](dining-philosophers.md)
     * [Rust Inside Other Languages](rust-inside-other-languages.md)
-* [Effective Rust](effective-rust.md)
-    * [The Stack and the Heap](the-stack-and-the-heap.md)
-    * [Testing](testing.md)
-    * [Conditional Compilation](conditional-compilation.md)
-    * [Documentation](documentation.md)
-    * [Iterators](iterators.md)
-    * [Concurrency](concurrency.md)
-    * [Error Handling](error-handling.md)
-    * [Choosing your Guarantees](choosing-your-guarantees.md)
-    * [FFI](ffi.md)
-    * [Borrow and AsRef](borrow-and-asref.md)
-    * [Release Channels](release-channels.md)
 * [Syntax and Semantics](syntax-and-semantics.md)
     * [Variable Bindings](variable-bindings.md)
     * [Functions](functions.md)
@@ -54,6 +42,18 @@
     * [Macros](macros.md)
     * [Raw Pointers](raw-pointers.md)
     * [`unsafe`](unsafe.md)
+* [Effective Rust](effective-rust.md)
+    * [The Stack and the Heap](the-stack-and-the-heap.md)
+    * [Testing](testing.md)
+    * [Conditional Compilation](conditional-compilation.md)
+    * [Documentation](documentation.md)
+    * [Iterators](iterators.md)
+    * [Concurrency](concurrency.md)
+    * [Error Handling](error-handling.md)
+    * [Choosing your Guarantees](choosing-your-guarantees.md)
+    * [FFI](ffi.md)
+    * [Borrow and AsRef](borrow-and-asref.md)
+    * [Release Channels](release-channels.md)
 * [Nightly Rust](nightly-rust.md)
     * [Compiler Plugins](compiler-plugins.md)
     * [Inline Assembly](inline-assembly.md)