Skip to content

Commit ad2efdc

Browse files
committed
Instead of putting them in the book, make them READMEs.
1 parent 005a250 commit ad2efdc

File tree

11 files changed

+3
-21
lines changed

11 files changed

+3
-21
lines changed

src/doc/trpl/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,3 @@ chapters focus on the most complex features, as well as some things that
3333
are only available in upcoming versions of Rust.
3434

3535
After reading "Advanced," you'll be a Rust expert!
36-
37-
<h2 class="section-header"><a href="internals.html">Internals</a></h2>
38-
39-
This section is full of documentaion of compiler internals. Here be dragons.

src/doc/trpl/SUMMARY.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Summary
22

3-
* [The Basics](basic.md)
3+
* [I: The Basics](basic.md)
44
* [Installing Rust](installing-rust.md)
55
* [Hello, world!](hello-world.md)
66
* [Hello, Cargo!](hello-cargo.md)
@@ -15,7 +15,7 @@
1515
* [Arrays, Vectors, and Slices](arrays-vectors-and-slices.md)
1616
* [Standard Input](standard-input.md)
1717
* [Guessing Game](guessing-game.md)
18-
* [Intermediate Rust](intermediate.md)
18+
* [II: Intermediate Rust](intermediate.md)
1919
* [More Strings](more-strings.md)
2020
* [Crates and Modules](crates-and-modules.md)
2121
* [Testing](testing.md)
@@ -31,16 +31,9 @@
3131
* [Concurrency](concurrency.md)
3232
* [Error Handling](error-handling.md)
3333
* [Documentation](documentation.md)
34-
* [Advanced Topics](advanced.md)
34+
* [III: Advanced Topics](advanced.md)
3535
* [FFI](ffi.md)
3636
* [Unsafe Code](unsafe.md)
3737
* [Macros](macros.md)
3838
* [Compiler Plugins](plugins.md)
39-
* [Compiler Internals](internals.md)
40-
* [Borrow Checker](borrow-checker.md)
41-
* [Trait Resolution](trait-resolution.md)
42-
* [Inference](inference.md)
43-
* [Higher Ranked Items](higher-ranked-items.md)
44-
* [Region Inference](region-inference.md)
45-
* [Method Lookup](method-lookup.md)
4639
* [Conclusion](conclusion.md)

src/doc/trpl/internals.md

Lines changed: 0 additions & 4 deletions
This file was deleted.
File renamed without changes.

src/librustc/middle/infer/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ use self::unify::{UnificationTable, InferCtxtMethodsForSimplyUnifiableTypes};
4646
use self::error_reporting::ErrorReporting;
4747

4848
pub mod combine;
49-
pub mod doc;
5049
pub mod equate;
5150
pub mod error_reporting;
5251
pub mod glb;

src/librustc_borrowck/borrowck/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ use syntax::visit;
4141
use syntax::visit::{Visitor, FnKind};
4242
use syntax::ast::{FnDecl, Block, NodeId};
4343

44-
pub mod doc;
45-
4644
pub mod check_loans;
4745

4846
pub mod gather_loans;

0 commit comments

Comments
 (0)