File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/lib/commands/src/graph Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ impl CommandGraph {
162
162
if !input_words. is_empty ( ) && input_words[ 0 ] == name {
163
163
// we found a match, we continue with the remaining input.
164
164
let remaining = if input_words. len ( ) > 1 {
165
- & remaining_input[ name. len ( ) ..] . trim_start ( )
165
+ remaining_input[ name. len ( ) ..] . trim_start ( )
166
166
} else {
167
167
""
168
168
} ;
@@ -183,7 +183,7 @@ impl CommandGraph {
183
183
// for argument nodes, we consume one argument and then continue.
184
184
if !input_words. is_empty ( ) {
185
185
let remaining = if input_words. len ( ) > 1 {
186
- & remaining_input[ input_words[ 0 ] . len ( ) ..] . trim_start ( )
186
+ remaining_input[ input_words[ 0 ] . len ( ) ..] . trim_start ( )
187
187
} else {
188
188
""
189
189
} ;
You can’t perform that action at this time.
0 commit comments