diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-02-27 08:47:03 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-02-27 08:47:03 +0000 |
commit | 7f7d96cffed6ed4836432a16cfc1dbd080bbab17 (patch) | |
tree | 86692c4855b71075782377311dc2f46ae536a45c | |
parent | 2180591593b4285b1765eb105c285c82727b2a6f (diff) | |
parent | 2374f8ddd820f7cb8451f631117137daebf39036 (diff) |
Merge #3338
3338: Renam module r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting.rs | 4 | ||||
-rw-r--r-- | crates/ra_ide/src/syntax_highlighting/tags.rs (renamed from crates/ra_ide/src/syntax_highlighting/highlight.rs) | 0 |
2 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 | ||
3 | mod highlight; | 3 | mod tags; |
4 | mod html; | 4 | mod html; |
5 | 5 | ||
6 | use hir::{Name, Semantics}; | 6 | use hir::{Name, Semantics}; |
@@ -17,7 +17,7 @@ use rustc_hash::FxHashMap; | |||
17 | 17 | ||
18 | use crate::{references::classify_name_ref, FileId}; | 18 | use crate::{references::classify_name_ref, FileId}; |
19 | 19 | ||
20 | pub use highlight::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; | 20 | pub use tags::{Highlight, HighlightModifier, HighlightModifiers, HighlightTag}; |
21 | 21 | ||
22 | pub(crate) use html::highlight_as_html; | 22 | pub(crate) use html::highlight_as_html; |
23 | 23 | ||
diff --git a/crates/ra_ide/src/syntax_highlighting/highlight.rs b/crates/ra_ide/src/syntax_highlighting/tags.rs index 383c74c98..383c74c98 100644 --- a/crates/ra_ide/src/syntax_highlighting/highlight.rs +++ b/crates/ra_ide/src/syntax_highlighting/tags.rs | |||