Replace broken match emoji from πŸ’” to πŸ₯€

Change the BrokenMatch emoji from broken heart (πŸ’”) to wilted flower
(πŸ₯€) for better visual distinction in GitHub PR comments.

https://claude.ai/code/session_018LfHdFcrSQFoHBWZSAxL6v
This commit is contained in:
Claude
2026-02-25 07:44:31 +00:00
parent 598d76d079
commit f8dfc1052b
+1 -1
View File
@@ -194,7 +194,7 @@ impl ChangeKind {
fn emoji(self) -> &'static str {
match self {
ChangeKind::NewMatch => "βœ…",
ChangeKind::BrokenMatch => "πŸ’”",
ChangeKind::BrokenMatch => "πŸ₯€",
ChangeKind::Improvement => "πŸ“ˆ",
ChangeKind::Regression => "πŸ“‰",
}