We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc5aeb1 commit 9de0921Copy full SHA for 9de0921
src/tools/compiletest/src/runtest.rs
@@ -83,10 +83,10 @@ fn disable_error_reporting<F: FnOnce() -> R, R>(f: F) -> R {
83
84
/// The platform-specific library name
85
fn get_lib_name(lib: &str, dylib: bool) -> String {
86
- // In some casess (e.g. MUSL), we build a static
+ // In some cases (e.g. MUSL), we build a static
87
// library, rather than a dynamic library.
88
// In this case, the only path we can pass
89
- // with '--extern-meta' is the '.lib' file
+ // with '--extern-meta' is the '.rlib' file
90
if !dylib {
91
return format!("lib{}.rlib", lib);
92
}
0 commit comments