diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-09-19 11:56:31 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-09-19 11:56:31 +0100 |
commit | f5808b21a423235037a487d877e23deb3e602f37 (patch) | |
tree | a7b911e60d96286b11f086a2eebe49ad117ff2b2 /crates/ra_lsp_server/src/main_loop | |
parent | 4d5cfd72295f336a91294f566baed32137ef3ed4 (diff) | |
parent | 8845b504382769eff14d2bd4c0c5dfbac75739d2 (diff) |
Merge #75
75: libsyntax2 -> rust-analyzer r=matklad a=kjeremy
Change a few `libsyntax2` to `rust-analyzer`
Co-authored-by: Jeremy A. Kolb <[email protected]>
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index 568f5344c..b2ebc9cdc 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -407,7 +407,7 @@ pub fn publish_diagnostics( | |||
407 | range: d.range.conv_with(&line_index), | 407 | range: d.range.conv_with(&line_index), |
408 | severity: Some(DiagnosticSeverity::Error), | 408 | severity: Some(DiagnosticSeverity::Error), |
409 | code: None, | 409 | code: None, |
410 | source: Some("libsyntax2".to_string()), | 410 | source: Some("rust-analyzer".to_string()), |
411 | message: d.message, | 411 | message: d.message, |
412 | related_information: None, | 412 | related_information: None, |
413 | }).collect(); | 413 | }).collect(); |