diff options
| author | steveklabnik <steve@steveklabnik.com> | 2018-04-05 13:27:41 -0400 |
|---|---|---|
| committer | steveklabnik <steve@steveklabnik.com> | 2018-04-09 14:04:10 -0400 |
| commit | 0dd0a5bc033a95ce980ccd13004afeac35521409 (patch) | |
| tree | f97f2d2593579e691071e4d84ee58a0c676cc8cf | |
| parent | 4b9b70c394e7f341b4016fce4cbf763d404b26f9 (diff) | |
| download | rust-0dd0a5bc033a95ce980ccd13004afeac35521409.tar.gz rust-0dd0a5bc033a95ce980ccd13004afeac35521409.zip | |
initialize the rustc book
| -rw-r--r-- | src/doc/rustc/.gitignore | 1 | ||||
| -rw-r--r-- | src/doc/rustc/book.toml | 5 | ||||
| -rw-r--r-- | src/doc/rustc/src/SUMMARY.md | 3 | ||||
| -rw-r--r-- | src/doc/rustc/src/chapter_1.md | 1 |
4 files changed, 10 insertions, 0 deletions
diff --git a/src/doc/rustc/.gitignore b/src/doc/rustc/.gitignore new file mode 100644 index 00000000000..7585238efed --- /dev/null +++ b/src/doc/rustc/.gitignore @@ -0,0 +1 @@ +book diff --git a/src/doc/rustc/book.toml b/src/doc/rustc/book.toml new file mode 100644 index 00000000000..821ad8fb09c --- /dev/null +++ b/src/doc/rustc/book.toml @@ -0,0 +1,5 @@ +[book] +authors = ["steveklabnik"] +multilingual = false +src = "src" +title = "The rustc book" diff --git a/src/doc/rustc/src/SUMMARY.md b/src/doc/rustc/src/SUMMARY.md new file mode 100644 index 00000000000..7390c82896e --- /dev/null +++ b/src/doc/rustc/src/SUMMARY.md @@ -0,0 +1,3 @@ +# Summary + +- [Chapter 1](./chapter_1.md) diff --git a/src/doc/rustc/src/chapter_1.md b/src/doc/rustc/src/chapter_1.md new file mode 100644 index 00000000000..b743fda3546 --- /dev/null +++ b/src/doc/rustc/src/chapter_1.md @@ -0,0 +1 @@ +# Chapter 1 |
