Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide/src/syntax_highlighting.rs')
-rw-r--r--crates/ide/src/syntax_highlighting.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting.rs b/crates/ide/src/syntax_highlighting.rs
index 6b246ff709..72ddbc5d16 100644
--- a/crates/ide/src/syntax_highlighting.rs
+++ b/crates/ide/src/syntax_highlighting.rs
@@ -342,7 +342,7 @@ fn traverse(
element_to_highlight.clone(),
) {
if inside_attribute {
- highlight = highlight | HlMod::Attribute;
+ highlight |= HlMod::Attribute
}
hl.add(HlRange { range, highlight, binding_hash });