diff options
-rw-r--r-- | crates/ra_lsp_server/src/server_world.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/server_world.rs b/crates/ra_lsp_server/src/server_world.rs index 2f5088fd5..6fe0d39df 100644 --- a/crates/ra_lsp_server/src/server_world.rs +++ b/crates/ra_lsp_server/src/server_world.rs | |||
@@ -160,7 +160,8 @@ impl ServerWorld { | |||
160 | if path.exists() { | 160 | if path.exists() { |
161 | LspError { | 161 | LspError { |
162 | code: ErrorCode::InvalidRequest as i32, | 162 | code: ErrorCode::InvalidRequest as i32, |
163 | message: "Rust file outside current workspace is not supported yet.".to_string(), | 163 | message: "Rust file outside current workspace is not supported yet." |
164 | .to_string(), | ||
164 | } | 165 | } |
165 | .into() | 166 | .into() |
166 | } else { | 167 | } else { |