File tree 6 files changed +6
-6
lines changed
6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -575,7 +575,7 @@ def fix_bin_or_dylib(self, fname):
575
575
]
576
576
patchelf_args = ["--set-rpath" , ":" .join (rpath_entries )]
577
577
if not fname .endswith (".so" ):
578
- # Finally, set the corret .interp for binaries
578
+ # Finally, set the correct .interp for binaries
579
579
with open ("{}/nix-support/dynamic-linker" .format (nix_deps_dir )) as dynamic_linker :
580
580
patchelf_args += ["--set-interpreter" , dynamic_linker .read ().rstrip ()]
581
581
Original file line number Diff line number Diff line change @@ -1399,7 +1399,7 @@ impl<'a> Builder<'a> {
1399
1399
1400
1400
// Add extra cfg not defined in/by rustc
1401
1401
//
1402
- // Note: Altrough it would seems that "-Zunstable-options" to `rustflags` is useless as
1402
+ // Note: Although it would seems that "-Zunstable-options" to `rustflags` is useless as
1403
1403
// cargo would implicitly add it, it was discover that sometimes bootstrap only use
1404
1404
// `rustflags` without `cargo` making it required.
1405
1405
rustflags. arg ( "-Zunstable-options" ) ;
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ pub enum GitInfo {
22
22
/// If the info should be used (`omit_git_hash` is false), this will be
23
23
/// `Some`, otherwise it will be `None`.
24
24
Present ( Option < Info > ) ,
25
- /// This is not a git repostory , but the info can be fetched from the
25
+ /// This is not a git repository , but the info can be fetched from the
26
26
/// `git-commit-info` file.
27
27
RecordedForTarball ( Info ) ,
28
28
}
Original file line number Diff line number Diff line change @@ -1153,7 +1153,7 @@ impl Step for Libunwind {
1153
1153
run. builder . ensure ( Libunwind { target : run. target } ) ;
1154
1154
}
1155
1155
1156
- /// Build linunwind .a
1156
+ /// Build libunwind .a
1157
1157
fn run ( self , builder : & Builder < ' _ > ) -> Self :: Output {
1158
1158
builder. update_submodule ( & Path :: new ( "src/llvm-project" ) ) ;
1159
1159
Original file line number Diff line number Diff line change 1
1
//! This module renders the JSON output of libtest into a human-readable form, trying to be as
2
2
//! similar to libtest's native output as possible.
3
3
//!
4
- //! This is needed because we need to use libtest in JSON mode to extract granluar information
4
+ //! This is needed because we need to use libtest in JSON mode to extract granular information
5
5
//! about the executed tests. Doing so suppresses the human-readable output, and (compared to Cargo
6
6
//! and rustc) libtest doesn't include the rendered human-readable output as a JSON field. We had
7
7
//! to reimplement all the rendering logic in this module because of that.
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ pub fn check(build: &mut Build) {
100
100
Couldn't find required command: cmake
101
101
102
102
You should install cmake, or set `download-ci-llvm = true` in the
103
- `[llvm]` section section of `config.toml` to download LLVM rather
103
+ `[llvm]` section of `config.toml` to download LLVM rather
104
104
than building it.
105
105
"
106
106
) ;
You can’t perform that action at this time.
0 commit comments