Add a TOC

This commit is contained in:
steveklabnik 2018-04-06 09:11:09 -04:00
parent 7de5b6034d
commit c942bf42fc
13 changed files with 23 additions and 3 deletions

View File

@ -1,3 +1,13 @@
# Summary # The Rustc Book
- [Chapter 1](./chapter_1.md) - [What is rustc?](what-is-rustc.md)
- [Command-line arguments](command-line-arguments/index.md)
- [Lints](lints/index.md)
- [Lint levels](lints/levels.md)
- [Lint Groups](lints/groups.md)
- [Lint listing](lints/listing/index.md)
- [Allowed-by-default lints](lints/listing/allowed-by-default.md)
- [Warn-by-default lints](lints/listing/warn-by-default.md)
- [Deny-by-default lints](lints/listing/deny-by-default.md)
- [Codegen options](codegen-options/index.md)
- [Contributing to `rustc`](contributing.md)

View File

@ -1 +0,0 @@
# Chapter 1

View File

@ -0,0 +1 @@
# Codegen options

View File

@ -0,0 +1 @@
# Command-line arguments

View File

@ -0,0 +1 @@
# Contributing to rustc

View File

@ -0,0 +1 @@
# Lint Groups

View File

@ -0,0 +1 @@
# Lints

View File

@ -0,0 +1 @@
# Lint levels

View File

@ -0,0 +1 @@
# Allowed-by-default lints

View File

@ -0,0 +1 @@
# Deny-by-default lints

View File

@ -0,0 +1 @@
# Lint listing

View File

@ -0,0 +1 @@
# Warn-by-default lints

View File

@ -0,0 +1 @@
# What is rustc?