mirror of
https://github.com/nushell/nushell
synced 2025-01-13 21:55:07 +00:00
Fix wrong error span
This commit is contained in:
parent
756269ee8d
commit
9ee4dc49ee
1 changed files with 4 additions and 1 deletions
|
@ -287,7 +287,10 @@ pub fn parse_module(
|
|||
}
|
||||
_ => (
|
||||
garbage_statement(&pipeline.commands[0].parts),
|
||||
Some(ParseError::Expected("def".into(), block_span)),
|
||||
Some(ParseError::Expected(
|
||||
"def".into(),
|
||||
pipeline.commands[0].parts[0],
|
||||
)),
|
||||
),
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue