File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -322,13 +322,15 @@ fn parse_input(input: &str) -> String {
322
322
323
323
if funcs. len ( ) > 1 {
324
324
while i < funcs. len ( ) - 2 {
325
- out. push_str ( & get_color ( Color :: Blue , Style :: NoStyle , funcs[ i] ) ) ;
325
+ out. push_str ( & get_color ( Color :: Blue , Style :: NoStyle ,
326
+ funcs[ i] ) ) ;
326
327
out. push ( '.' ) ;
327
328
i += 1 ;
328
329
}
329
330
if i < funcs. len ( ) {
330
331
let func_name : Vec < & str > = funcs[ i] . split ( '(' ) . collect ( ) ;
331
- out. push_str ( & get_color ( Color :: Blue , Style :: NoStyle , func_name[ 0 ] ) ) ;
332
+ out. push_str ( & get_color ( Color :: Blue , Style :: NoStyle ,
333
+ func_name[ 0 ] ) ) ;
332
334
i = 1 ;
333
335
334
336
while i < func_name. len ( ) {
@@ -347,7 +349,6 @@ fn parse_input(input: &str) -> String {
347
349
}
348
350
} else {
349
351
let func_name : Vec < & str > = word. split ( '(' ) . collect ( ) ;
350
-
351
352
352
353
if func_name. len ( ) > 1 {
353
354
out. push_str ( & get_color ( Color :: Blue , Style :: NoStyle , func_name[ 0 ] ) ) ;
You can’t perform that action at this time.
0 commit comments