diff options
Diffstat (limited to 'src/bootstrap/doc.rs')
| -rw-r--r-- | src/bootstrap/doc.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index db8ed579cec..3c024f4c4ef 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -53,6 +53,11 @@ pub fn rustbook(build: &Build, target: &str, name: &str) { .arg(out)); } +pub fn book(build: &Build, target: &str, name: &str) { + rustbook(build, target, &format!("{}/first-edition", name)); + rustbook(build, target, &format!("{}/second-edition", name)); +} + /// Generates all standalone documentation as compiled by the rustdoc in `stage` /// for the `target` into `out`. /// |
