diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2022-08-09 07:23:57 +0300 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2022-08-09 07:23:57 +0300 |
| commit | 22c8c9c4014c63309524f218d92554ebfdf9621e (patch) | |
| tree | 022a94cdeb2eb2ea11be129453c3d45296754244 /crates/proc-macro-api | |
| parent | 9d2cb42a413e51deb50b36794a2e1605381878fc (diff) | |
| download | rust-22c8c9c4014c63309524f218d92554ebfdf9621e.tar.gz rust-22c8c9c4014c63309524f218d92554ebfdf9621e.zip | |
:arrow_up: rust-analyzer
Diffstat (limited to 'crates/proc-macro-api')
| -rw-r--r-- | crates/proc-macro-api/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc-macro-api/src/lib.rs b/crates/proc-macro-api/src/lib.rs index d7010e825aa..a3ea05f4aff 100644 --- a/crates/proc-macro-api/src/lib.rs +++ b/crates/proc-macro-api/src/lib.rs @@ -60,7 +60,7 @@ impl MacroDylib { let info = version::read_dylib_info(&path)?; if info.version.0 < 1 || info.version.1 < 47 { - let msg = format!("proc-macro {} built by {:#?} is not supported by Rust Analyzer, please update your rust version.", path.display(), info); + let msg = format!("proc-macro {} built by {:#?} is not supported by rust-analyzer, please update your Rust version.", path.display(), info); return Err(io::Error::new(io::ErrorKind::InvalidData, msg)); } |
