We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 813d76d commit 07f7083Copy full SHA for 07f7083
src/shims/env.rs
@@ -32,7 +32,7 @@ impl<'tcx> EnvVars<'tcx> {
32
let var_ptr = match target_os {
33
"linux" | "macos" => alloc_env_var_as_c_str(name.as_ref(), value.as_ref(), ecx)?,
34
"windows" => alloc_env_var_as_wide_str(name.as_ref(), value.as_ref(), ecx)?,
35
- unsupported => throw_unsup_format!("OsString support for target OS `{}` not yet available", unsupported),
+ unsupported => throw_unsup_format!("environment support for target OS `{}` not yet available", unsupported),
36
};
37
ecx.machine.env_vars.map.insert(OsString::from(name), var_ptr);
38
}
0 commit comments