Rollup merge of #134911 - HigherOrderLogic:master, r=onur-ozkan
chore: fix typos This PR fixes typos errors in docstring only, so functionality wise, it should stay the same.
This commit is contained in:
commit
4b9e3daa0b
9 changed files with 9 additions and 9 deletions
|
|
@ -2637,7 +2637,7 @@ fn prepare_cargo_test(
|
|||
) -> BootstrapCommand {
|
||||
let mut cargo = cargo.into();
|
||||
|
||||
// Propegate `--bless` if it has not already been set/unset
|
||||
// Propagate `--bless` if it has not already been set/unset
|
||||
// Any tools that want to use this should bless if `RUSTC_BLESS` is set to
|
||||
// anything other than `0`.
|
||||
if builder.config.cmd.bless() && !cargo.get_envs().any(|v| v.0 == "RUSTC_BLESS") {
|
||||
|
|
|
|||
|
|
@ -1691,7 +1691,7 @@ Executed at: {executed_at}"#,
|
|||
}
|
||||
}
|
||||
if let Ok(()) = fs::hard_link(&src, dst) {
|
||||
// Attempt to "easy copy" by creating a hard link (symlinks are priviledged on windows),
|
||||
// Attempt to "easy copy" by creating a hard link (symlinks are privileged on windows),
|
||||
// but if that fails just fall back to a slow `copy` operation.
|
||||
} else {
|
||||
if let Err(e) = fs::copy(&src, dst) {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
//! Facilitates the management and generation of tarballs.
|
||||
//!
|
||||
//! Tarballs efficiently hold Rust compiler build artifacts and
|
||||
//! capture a snapshot of each boostrap stage.
|
||||
//! capture a snapshot of each bootstrap stage.
|
||||
//! In uplifting, a tarball from Stage N captures essential components
|
||||
//! to assemble Stage N + 1 compiler.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue