diff options
author | Bastian Kersting <[email protected]> | 2021-04-26 10:37:28 +0100 |
---|---|---|
committer | Bastian Kersting <[email protected]> | 2021-04-26 10:37:28 +0100 |
commit | 421cf9a1bdd42c146c466f517e23104cd6fe27d4 (patch) | |
tree | 2ea0d350587043554377b8becc73ca971099e566 /crates/ide | |
parent | 336b81abd7e8d05caf72dbeab228e4e03b2c53ee (diff) |
Fixed formatting
Diffstat (limited to 'crates/ide')
-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 | ||