mirror of
https://github.com/nushell/nushell
synced 2024-12-27 05:23:11 +00:00
Fix issue with unexpected EOF rendering in miette
This commit is contained in:
parent
dbfd2808ba
commit
c87414e462
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ pub fn lex_item(
|
|||
(delim as char).to_string(),
|
||||
Span {
|
||||
start: span.end,
|
||||
end: span.end + 1,
|
||||
end: span.end,
|
||||
},
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue