diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ide/src/syntax_highlighting/highlight.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting/highlight.rs b/crates/ide/src/syntax_highlighting/highlight.rs index f80b8d9cc..b586dcc17 100644 --- a/crates/ide/src/syntax_highlighting/highlight.rs +++ b/crates/ide/src/syntax_highlighting/highlight.rs | |||
@@ -291,7 +291,7 @@ fn highlight_def(db: &RootDatabase, def: Definition) -> Highlight { | |||
291 | if let hir::Access::Exclusive = sp.access(db) { | 291 | if let hir::Access::Exclusive = sp.access(db) { |
292 | h |= HlMod::Mutable; | 292 | h |= HlMod::Mutable; |
293 | } | 293 | } |
294 | }, | 294 | } |
295 | None => h |= HlMod::Static, | 295 | None => h |= HlMod::Static, |
296 | } | 296 | } |
297 | 297 | ||