Instead of putting them in the book, make them READMEs.

This commit is contained in:
Steve Klabnik 2015-02-10 22:09:42 -05:00
parent 005a2506a6
commit ad2efdc67d
11 changed files with 3 additions and 21 deletions
src
doc/trpl
librustc/middle
infer
README.md
higher_ranked
mod.rs
region_inference
traits
librustc_borrowck/borrowck
librustc_typeck/check/method

@ -33,7 +33,3 @@ chapters focus on the most complex features, as well as some things that
are only available in upcoming versions of Rust.
After reading "Advanced," you'll be a Rust expert!
<h2 class="section-header"><a href="internals.html">Internals</a></h2>
This section is full of documentaion of compiler internals. Here be dragons.

@ -1,6 +1,6 @@
# Summary
* [The Basics](basic.md)
* [I: The Basics](basic.md)
* [Installing Rust](installing-rust.md)
* [Hello, world!](hello-world.md)
* [Hello, Cargo!](hello-cargo.md)
@ -15,7 +15,7 @@
* [Arrays, Vectors, and Slices](arrays-vectors-and-slices.md)
* [Standard Input](standard-input.md)
* [Guessing Game](guessing-game.md)
* [Intermediate Rust](intermediate.md)
* [II: Intermediate Rust](intermediate.md)
* [More Strings](more-strings.md)
* [Crates and Modules](crates-and-modules.md)
* [Testing](testing.md)
@ -31,16 +31,9 @@
* [Concurrency](concurrency.md)
* [Error Handling](error-handling.md)
* [Documentation](documentation.md)
* [Advanced Topics](advanced.md)
* [III: Advanced Topics](advanced.md)
* [FFI](ffi.md)
* [Unsafe Code](unsafe.md)
* [Macros](macros.md)
* [Compiler Plugins](plugins.md)
* [Compiler Internals](internals.md)
* [Borrow Checker](borrow-checker.md)
* [Trait Resolution](trait-resolution.md)
* [Inference](inference.md)
* [Higher Ranked Items](higher-ranked-items.md)
* [Region Inference](region-inference.md)
* [Method Lookup](method-lookup.md)
* [Conclusion](conclusion.md)

@ -1,4 +0,0 @@
% Compiler Internals
This section is full of stuff that's the most complex, and the most internal.
Here be dragons.

@ -46,7 +46,6 @@ use self::unify::{UnificationTable, InferCtxtMethodsForSimplyUnifiableTypes};
use self::error_reporting::ErrorReporting;
pub mod combine;
pub mod doc;
pub mod equate;
pub mod error_reporting;
pub mod glb;

@ -41,8 +41,6 @@ use syntax::visit;
use syntax::visit::{Visitor, FnKind};
use syntax::ast::{FnDecl, Block, NodeId};
pub mod doc;
pub mod check_loans;
pub mod gather_loans;