Skip to content

Commit 6f19bd0

Browse files
committed
fix a few typos in rmake tests' comments
1 parent 9ca5df6 commit 6f19bd0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tests/run-make/import-macro-verbatim/verbatim.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Include a file by concating the verbatim path using `/` instead of `\`
1+
//! Include a file by concatenating the verbatim path using `/` instead of `\`
22
33
include!(concat!(env!("VERBATIM_DIR"), "/include/include.txt"));
44
fn main() {

tests/run-make/llvm-outputs/rmake.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ fn main() {
99
let mut path_ir = PathBuf::new();
1010
run_in_tmpdir(|| {
1111
let p = cwd();
12-
path_bc = p.join("nonexistant_dir_bc");
13-
path_ir = p.join("nonexistant_dir_ir");
12+
path_bc = p.join("nonexistent_dir_bc");
13+
path_ir = p.join("nonexistent_dir_ir");
1414
rustc().input("-").stdin_buf("fn main() {}").out_dir(&path_bc).emit("llvm-bc").run();
1515
rustc().input("-").stdin_buf("fn main() {}").out_dir(&path_ir).emit("llvm-ir").run();
1616
assert!(path_bc.exists());

tests/run-make/musl-default-linking/rmake.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn main() {
4848
let default = &target_spec["crt-static-default"];
4949

5050
// If the value is `null`, then the default to dynamically link from
51-
// musl_base was not overriden.
51+
// musl_base was not overridden.
5252
if default.is_null() {
5353
continue;
5454
}

tests/run-make/no-builtins-lto/rmake.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// The rlib produced by a no_builtins crate should be explicitely linked
1+
// The rlib produced by a no_builtins crate should be explicitly linked
22
// during compilation, and as a result be present in the linker arguments.
33
// See the comments inside this file for more details.
44
// See https://github.com/rust-lang/rust/pull/35637

tests/run-make/symbol-visibility/rmake.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Dynamic libraries on Rust used to export a very high amount of symbols,
22
// going as far as filling the output with mangled names and generic function
33
// names. After the rework of #38117, this test checks that no mangled Rust symbols
4-
// are exported, and that generics are only shown if explicitely requested.
4+
// are exported, and that generics are only shown if explicitly requested.
55
// See https://github.com/rust-lang/rust/issues/37530
66

77
use run_make_support::object::read::Object;

0 commit comments

Comments
 (0)