aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/syntax_highlighting
diff options
context:
space:
mode:
authorBastian Kersting <[email protected]>2021-04-26 10:37:28 +0100
committerBastian Kersting <[email protected]>2021-04-26 10:37:28 +0100
commit421cf9a1bdd42c146c466f517e23104cd6fe27d4 (patch)
tree2ea0d350587043554377b8becc73ca971099e566 /crates/ide/src/syntax_highlighting
parent336b81abd7e8d05caf72dbeab228e4e03b2c53ee (diff)
Fixed formatting
Diffstat (limited to 'crates/ide/src/syntax_highlighting')
-rw-r--r--crates/ide/src/syntax_highlighting/highlight.rs2
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