mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 14:03:35 +00:00
Return result directly
Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
parent
fba6adfae4
commit
fd1b64ec71
1 changed files with 2 additions and 2 deletions
|
@ -2,6 +2,6 @@
|
|||
|
||||
use proc_macro_srv::cli;
|
||||
|
||||
fn main() {
|
||||
cli::run().unwrap();
|
||||
fn main() -> std::io::Result<()> {
|
||||
cli::run()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue