Unnamed repository; edit this file 'description' to name the repository.
Fixed tidy test
| -rw-r--r-- | crates/ide/src/syntax_highlighting/escape.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide/src/syntax_highlighting/escape.rs b/crates/ide/src/syntax_highlighting/escape.rs index 1b53edb7dc..6a1236c793 100644 --- a/crates/ide/src/syntax_highlighting/escape.rs +++ b/crates/ide/src/syntax_highlighting/escape.rs @@ -1,9 +1,9 @@ +//! Syntax highlighting for escape sequences use crate::syntax_highlighting::highlights::Highlights; use crate::{HlRange, HlTag}; use syntax::ast::IsString; use syntax::TextSize; -/// Highlight escape sequences pub(super) fn highlight_escape_string<T: IsString>( stack: &mut Highlights, string: &T, |