Skip to content

Commit c774c95

Browse files
committed
Auto merge of #43863 - steveklabnik:ship-the-rustdoc-book, r=frewsxcv
Ship the rustdoc book Fixes #42322, as it's the last step. Blocked on #43790, though they will not conflict. r? @rust-lang/docs
2 parents f6a30bd + 2c6cf22 commit c774c95

File tree

6 files changed

+6
-33
lines changed

6 files changed

+6
-33
lines changed

src/bootstrap/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl<'a> Builder<'a> {
257257
Kind::Bench => describe!(check::Crate, check::CrateLibrustc),
258258
Kind::Doc => describe!(doc::UnstableBook, doc::UnstableBookGen, doc::TheBook,
259259
doc::Standalone, doc::Std, doc::Test, doc::Rustc, doc::ErrorIndex, doc::Nomicon,
260-
doc::Reference),
260+
doc::Reference, doc::Rustdoc),
261261
Kind::Dist => describe!(dist::Docs, dist::Mingw, dist::Rustc, dist::DebuggerScripts,
262262
dist::Std, dist::Analysis, dist::Src, dist::PlainSourceTarball, dist::Cargo,
263263
dist::Rls, dist::Extended, dist::HashSign),

src/bootstrap/doc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ macro_rules! book {
6868
book!(
6969
Nomicon, "src/doc/book", "nomicon";
7070
Reference, "src/doc/reference", "reference";
71+
Rustdoc, "src/doc/rustdoc", "rustdoc";
7172
);
7273

7374
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]

src/doc/index.md

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ nicknamed 'The Rust Bookshelf.'
3131
* [The Unstable Book][unstable-book] has documentation for unstable features.
3232
* [The Rustonomicon][nomicon] is your guidebook to the dark arts of unsafe Rust.
3333
* [The Reference][ref] is not a formal spec, but is more detailed and comprehensive than the book.
34+
* [The Rustdoc Book][rustdoc-book] describes our documentation tool, `rustdoc`.
3435

3536
Initially, documentation lands in the Unstable Book, and then, as part of the
3637
stabilization process, is moved into the Book, Nomicon, or Reference.
@@ -51,4 +52,5 @@ before this policy was put into place. That work is being tracked
5152
[book]: book/index.html
5253
[nomicon]: nomicon/index.html
5354
[unstable-book]: unstable-book/index.html
55+
[rustdoc-book]: rustdoc/index.html
5456

src/doc/rustdoc/src/SUMMARY.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
- [Command-line arguments](command-line-arguments.md)
55
- [The `#[doc]` attribute](the-doc-attribute.md)
66
- [Documentation tests](documentation-tests.md)
7-
- [Plugins](plugins.md)
8-
- [Passes](passes.md)
7+
- [Passes](passes.md)

src/doc/rustdoc/src/command-line-arguments.md

+1-27
Original file line numberDiff line numberDiff line change
@@ -141,20 +141,6 @@ Similar to `--library-path`, `--extern` is about specifying the location
141141
of a dependency. `--library-path` provides directories to search in, `--extern`
142142
instead lets you specify exactly which dependency is located where.
143143

144-
145-
## `--plugin-path`: loading plugins
146-
147-
Using this flag looks like this:
148-
149-
```bash
150-
$ rustdoc src/lib.rs --plugin-path=/path/to/plugins
151-
```
152-
153-
Similar to `--library-path`, but for plugins. For more, see
154-
the [chapter on plugins](plugins.html).
155-
156-
See also: `--plugins`.
157-
158144
## `--passes`: add more rustdoc passes
159145

160146
Using this flag looks like this:
@@ -171,18 +157,6 @@ For more details on passes, see [the chapter on them](passes.html).
171157

172158
See also `--no-defaults`.
173159

174-
## `--plugins`:
175-
176-
Using this flag looks like this:
177-
178-
```bash
179-
$ rustdoc src/lib.rs --plugins foo bar
180-
```
181-
182-
For more, see the [chapter on plugins](plugins.html).
183-
184-
See also: `--plugin-path`.
185-
186160
## `--no-defaults`: don't run default passes
187161

188162
Using this flag looks like this:
@@ -345,4 +319,4 @@ $ rustdoc src/lib.rs --sysroot /path/to/sysroot
345319
```
346320

347321
Similar to `rustc --sysroot`, this lets you change the sysroot `rustdoc` uses
348-
when compiling your code.
322+
when compiling your code.

src/doc/rustdoc/src/plugins.md

-3
This file was deleted.

0 commit comments

Comments
 (0)