Skip to content

Commit 9964ab2

Browse files
committedMar 25, 2023
analyzer: Add missing semicolons
1 parent 9c3c7a5 commit 9964ab2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎crates/rush-analyzer/src/analyzer.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ impl<'src> Analyzer<'src> {
415415
),
416416
vec!["remove the parameters: `fn main() { ... }`".into()],
417417
node.params.span,
418-
)
418+
);
419419
}
420420

421421
// the main function must return `()`
@@ -429,7 +429,7 @@ impl<'src> Analyzer<'src> {
429429
),
430430
vec!["remove the return type: `fn main() { ... }`".into()],
431431
node.return_type.span,
432-
)
432+
);
433433
}
434434
}
435435
}

0 commit comments

Comments
 (0)
Please sign in to comment.