diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs index 4e95b9ce563..5f11b091c36 100644 --- a/crates/ra_ide/src/syntax_highlighting.rs +++ b/crates/ra_ide/src/syntax_highlighting.rs @@ -1,6 +1,6 @@ //! FIXME: write short doc here -mod highlight; +mod tags; mod html; use hir::{Name, Semantics}; @@ -17,7 +17,7 @@ use rustc_hash::FxHashMap; use crate::{references::classify_name_ref, FileId}; -pub use highlight::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; +pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; pub(crate) use html::highlight_as_html; diff --git a/crates/ra_ide/src/syntax_highlighting/highlight.rs b/crates/ra_ide/src/syntax_highlighting/tags.rs similarity index 100% rename from crates/ra_ide/src/syntax_highlighting/highlight.rs rename to crates/ra_ide/src/syntax_highlighting/tags.rs