mirror of
https://github.com/nushell/nushell
synced 2024-12-30 15:03:25 +00:00
use correct argument for error message
This commit is contained in:
parent
36f2b09cad
commit
9181a046ec
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ impl Plugin for Match {
|
||||||
_ => {
|
_ => {
|
||||||
return Err(ShellError::string(format!(
|
return Err(ShellError::string(format!(
|
||||||
"Unrecognized type in params: {:?}",
|
"Unrecognized type in params: {:?}",
|
||||||
args[0]
|
args[1]
|
||||||
)));
|
)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue