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