diff --git a/crates/ra_proc_macro_srv/src/cli.rs b/crates/ra_proc_macro_srv/src/cli.rs index 7bfa4312ad9..c7f41e4485f 100644 --- a/crates/ra_proc_macro_srv/src/cli.rs +++ b/crates/ra_proc_macro_srv/src/cli.rs @@ -9,7 +9,7 @@ pub fn run() { let req = match read_request() { Err(err) => { // Panic here, as the stdin pipe may be closed. - // Otherwise, client will be restart the service anyway. + // Otherwise, client will be restarted the service anyway. panic!("Read message error on ra_proc_macro_srv: {}", err); } Ok(None) => continue,