summaryrefslogtreecommitdiffstats
path: root/core/src/text
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/text')
-rw-r--r--core/src/text/highlighter.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/text/highlighter.rs b/core/src/text/highlighter.rs
index 1f9ac840..a929826f 100644
--- a/core/src/text/highlighter.rs
+++ b/core/src/text/highlighter.rs
@@ -3,7 +3,7 @@ use crate::Color;
use std::hash::Hash;
use std::ops::Range;
-pub trait Highlighter: Clone + 'static {
+pub trait Highlighter: 'static {
type Settings: Hash;
type Highlight;