diff --git a/src/parse/syntax.rs b/src/parse/syntax.rs index a605e7092..ccdbda7c8 100644 --- a/src/parse/syntax.rs +++ b/src/parse/syntax.rs @@ -645,9 +645,7 @@ impl MatchKind { pub fn is_novel(&self) -> bool { matches!( self, - MatchKind::Novel { .. } - | MatchKind::NovelWord { .. } - | MatchKind::NovelLinePart { .. } + MatchKind::Novel { .. } | MatchKind::NovelWord { .. } | MatchKind::NovelLinePart { .. } ) } }