aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/syntax_highlighting.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide/src/syntax_highlighting.rs')
-rw-r--r--crates/ra_ide/src/syntax_highlighting.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting.rs b/crates/ra_ide/src/syntax_highlighting.rs
index 4e95b9ce5..5f11b091c 100644
--- a/crates/ra_ide/src/syntax_highlighting.rs
+++ b/crates/ra_ide/src/syntax_highlighting.rs
@@ -1,6 +1,6 @@
1//! FIXME: write short doc here 1//! FIXME: write short doc here
2 2
3mod highlight; 3mod tags;
4mod html; 4mod html;
5 5
6use hir::{Name, Semantics}; 6use hir::{Name, Semantics};
@@ -17,7 +17,7 @@ use rustc_hash::FxHashMap;
17 17
18use crate::{references::classify_name_ref, FileId}; 18use crate::{references::classify_name_ref, FileId};
19 19
20pub use highlight::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; 20pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag};
21 21
22pub(crate) use html::highlight_as_html; 22pub(crate) use html::highlight_as_html;
23 23