diff options
Diffstat (limited to 'highlighter/src/lib.rs')
-rw-r--r-- | highlighter/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/highlighter/src/lib.rs b/highlighter/src/lib.rs index 2d0ac2e4..982f1279 100644 --- a/highlighter/src/lib.rs +++ b/highlighter/src/lib.rs @@ -1,9 +1,9 @@ //! A syntax highlighter for iced. use iced_core as core; +use crate::core::Color; use crate::core::font::{self, Font}; use crate::core::text::highlighter::{self, Format}; -use crate::core::Color; use std::ops::Range; use std::sync::LazyLock; |