Skip to content

File tree

457 files changed

+2341
-2317
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

457 files changed

+2341
-2317
lines changed
 

‎src/bootstrap/builder.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -793,7 +793,7 @@ impl<'a> Builder<'a> {
793793
}
794794

795795
// Set a flag for `check` so that certain build scripts can do less work
796-
// (e.g. not building/requiring LLVM).
796+
// (e.g., not building/requiring LLVM).
797797
if cmd == "check" {
798798
cargo.env("RUST_CHECK", "1");
799799
}
@@ -923,12 +923,12 @@ impl<'a> Builder<'a> {
923923
cargo.env("RUSTC_FORCE_UNSTABLE", "1");
924924

925925
// Currently the compiler depends on crates from crates.io, and
926-
// then other crates can depend on the compiler (e.g. proc-macro
926+
// then other crates can depend on the compiler (e.g., proc-macro
927927
// crates). Let's say, for example that rustc itself depends on the
928928
// bitflags crate. If an external crate then depends on the
929929
// bitflags crate as well, we need to make sure they don't
930930
// conflict, even if they pick the same version of bitflags. We'll
931-
// want to make sure that e.g. a plugin and rustc each get their
931+
// want to make sure that e.g., a plugin and rustc each get their
932932
// own copy of bitflags.
933933

934934
// Cargo ensures that this works in general through the -C metadata

‎src/bootstrap/dist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ impl Step for Mingw {
353353
/// Build the `rust-mingw` installer component.
354354
///
355355
/// This contains all the bits and pieces to run the MinGW Windows targets
356-
/// without any extra installed software (e.g. we bundle gcc, libraries, etc).
356+
/// without any extra installed software (e.g., we bundle gcc, libraries, etc).
357357
fn run(self, builder: &Builder) -> Option<PathBuf> {
358358
let host = self.host;
359359

0 commit comments

Comments
 (0)