diff --git a/crates/highlights/src/kind.rs b/crates/highlights/src/kind.rs index d4e38c2..ac84970 100644 --- a/crates/highlights/src/kind.rs +++ b/crates/highlights/src/kind.rs @@ -1,14 +1,4 @@ -use std::fmt; - #[napi(string_enum)] pub enum Kind { Keyword, } - -impl fmt::Display for Kind { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - match self { - Kind::Keyword => write!(f, "keyword"), - } - } -}