mirror of
https://github.com/nushell/nushell
synced 2025-01-13 13:49:21 +00:00
Remove unnecessary parentheses (#9605)
# Description As seen on nightly
This commit is contained in:
parent
7e39179b7f
commit
1bdec1cbb6
1 changed files with 1 additions and 1 deletions
|
@ -2812,7 +2812,7 @@ pub fn parse_let(working_set: &mut StateWorkingSet, spans: &[Span]) -> Pipeline
|
|||
if item == b"=" && spans.len() > (span.0 + 1) {
|
||||
let (tokens, parse_error) = lex(
|
||||
working_set.get_span_contents(nu_protocol::span(&spans[(span.0 + 1)..])),
|
||||
spans[(span.0 + 1)].start,
|
||||
spans[span.0 + 1].start,
|
||||
&[],
|
||||
&[],
|
||||
true,
|
||||
|
|
Loading…
Reference in a new issue