We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 76bb98c + 39f337a commit a81ef8aCopy full SHA for a81ef8a
src/bootstrap/builder.rs
@@ -1916,10 +1916,10 @@ impl<'a> Builder<'a> {
1916
}
1917
1918
// For `cargo doc` invocations, make rustdoc print the Rust version into the docs
1919
- // This replaces spaces with newlines because RUSTDOCFLAGS does not
+ // This replaces spaces with tabs because RUSTDOCFLAGS does not
1920
// support arguments with regular spaces. Hopefully someday Cargo will
1921
// have space support.
1922
- let rust_version = self.rust_version().replace(' ', "\n");
+ let rust_version = self.rust_version().replace(' ', "\t");
1923
rustdocflags.arg("--crate-version").arg(&rust_version);
1924
1925
// Environment variables *required* throughout the build
0 commit comments