1
Fork 0

Add book section and fix typo.

This commit is contained in:
Wesley Norris 2018-12-31 18:05:57 -05:00
parent 80ee94c1f8
commit 09cad1b8a5
6 changed files with 7 additions and 4 deletions

@ -1 +0,0 @@
Subproject commit c99638dc2ecfc750cc1656f6edb2bd062c1e0981

View file

@ -417,3 +417,7 @@ JavaScript, and font files in a single location, rather than duplicating it once
(grouping of crate docs generated into the same output directory, like with `cargo doc`). Per-crate
files like the search index will still load from the documentation root, but anything that gets
renamed with `--resource-suffix` will load from the given path.
### `--persist-doctests`: persist doctest executables after running
This feature allows the persistence of the doctest executables to the specified path.

@ -1 +0,0 @@
Subproject commit fe74674f6e4be76d47b66f67d529ebf4186f4eb1

@ -1 +0,0 @@
Subproject commit c75ca6465a139704e00295be355b1f067af2f535

View file

@ -68,7 +68,8 @@ pub struct Options {
pub should_test: bool,
/// List of arguments to pass to the test harness, if running tests.
pub test_args: Vec<String>,
/// Otional path to persist the doctest executables to.
/// Optional path to persist the doctest executables to, defaults to a
/// temporary directory if not set.
pub persist_doctests: Option<PathBuf>,
// Options that affect the documentation process

View file

@ -340,6 +340,7 @@ fn opts() -> Vec<RustcOptGroup> {
o.optflag("",
"disable-per-crate-search",
"disables generating the crate selector on the search box")
}),
unstable("persist-doctests", |o| {
o.optopt("",
"persist-doctests",