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