diff options
author | Edwin Cheng <[email protected]> | 2020-04-23 17:16:17 +0100 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-04-23 17:16:17 +0100 |
commit | 25e8f5ded9037bd9a172861c995b467b63390808 (patch) | |
tree | 3e1d627cab2d6238fd4126956a11bc1da28deb03 /crates/ra_proc_macro_srv/src | |
parent | 07444976998122ca81dec7cca1f761c5b8b84f79 (diff) |
Fix typo
Diffstat (limited to 'crates/ra_proc_macro_srv/src')
-rw-r--r-- | crates/ra_proc_macro_srv/src/cli.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_proc_macro_srv/src/cli.rs b/crates/ra_proc_macro_srv/src/cli.rs index 7bfa4312a..c7f41e448 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() { | |||
9 | let req = match read_request() { | 9 | let req = match read_request() { |
10 | Err(err) => { | 10 | Err(err) => { |
11 | // Panic here, as the stdin pipe may be closed. | 11 | // Panic here, as the stdin pipe may be closed. |
12 | // Otherwise, client will be restart the service anyway. | 12 | // Otherwise, client will be restarted the service anyway. |
13 | panic!("Read message error on ra_proc_macro_srv: {}", err); | 13 | panic!("Read message error on ra_proc_macro_srv: {}", err); |
14 | } | 14 | } |
15 | Ok(None) => continue, | 15 | Ok(None) => continue, |