Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/syntax_highlighting/inject.rs')
| -rw-r--r-- | crates/ide/src/syntax_highlighting/inject.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide/src/syntax_highlighting/inject.rs b/crates/ide/src/syntax_highlighting/inject.rs index 8ac3c2da50..94d573a30b 100644 --- a/crates/ide/src/syntax_highlighting/inject.rs +++ b/crates/ide/src/syntax_highlighting/inject.rs @@ -20,7 +20,7 @@ use crate::{ pub(super) fn ra_fixture( hl: &mut Highlights, - sema: &Semantics<RootDatabase>, + sema: &Semantics<'_, RootDatabase>, literal: &ast::String, expanded: &ast::String, ) -> Option<()> { @@ -84,7 +84,7 @@ const RUSTDOC_FENCES: [&str; 2] = ["```", "~~~"]; /// Injection of syntax highlighting of doctests. pub(super) fn doc_comment( hl: &mut Highlights, - sema: &Semantics<RootDatabase>, + sema: &Semantics<'_, RootDatabase>, InFile { file_id: src_file_id, value: node }: InFile<&SyntaxNode>, ) { let (attributes, def) = match doc_attributes(sema, node) { |