Skip to content

Commit

Permalink
Don't build docs for removed libcollections.
Browse files Browse the repository at this point in the history
  • Loading branch information
leoyvens committed Oct 22, 2017
1 parent 19aa23b commit 170f63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/doc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ impl Step for Std {
// for which docs must be built.
if !build.config.compiler_docs {
cargo.arg("--no-deps");
for krate in &["alloc", "collections", "core", "std", "std_unicode"] {
for krate in &["alloc", "core", "std", "std_unicode"] {
cargo.arg("-p").arg(krate);
// Create all crate output directories first to make sure rustdoc uses
// relative links.
Expand Down

0 comments on commit 170f63e

Please sign in to comment.