We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1848dd9 + 959670e commit 02e3af2Copy full SHA for 02e3af2
vm/src/stdlib/os.rs
@@ -1571,11 +1571,11 @@ mod posix {
1571
1572
let first = argv
1573
.first()
1574
- .ok_or_else(|| vm.new_value_error("execv() arg 2 must not be empty".to_owned()))?;
+ .ok_or_else(|| vm.new_value_error("execve() arg 2 must not be empty".to_owned()))?;
1575
1576
if first.to_bytes().is_empty() {
1577
return Err(
1578
- vm.new_value_error("execv() arg 2 first element cannot be empty".to_owned())
+ vm.new_value_error("execve() arg 2 first element cannot be empty".to_owned())
1579
);
1580
}
1581
0 commit comments