Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/doc_links.rs')
| -rw-r--r-- | crates/ide/src/doc_links.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/doc_links.rs b/crates/ide/src/doc_links.rs index 017ca48e3b..b4f06e12d9 100644 --- a/crates/ide/src/doc_links.rs +++ b/crates/ide/src/doc_links.rs @@ -473,7 +473,7 @@ fn get_doc_base_urls( // https://github.com/rust-lang/rust-analyzer/issues/12250 if let Definition::BuiltinType(..) = def { let weblink = Url::parse("https://doc.rust-lang.org/nightly/core/").ok(); - return (weblink, local_doc_path); + return (weblink, None); }; let Some(krate) = def.krate(db) else { return Default::default() }; |