Use more widely supported arrow symbol in performance report
Fixes #360.
This commit is contained in:
parent
c9e110f054
commit
8a41517995
|
@ -124,10 +124,10 @@ impl<'a> EvaluationStatsDiff<'a> {
|
|||
|
||||
if left > right {
|
||||
diff = left - right;
|
||||
direction = "🡖 ";
|
||||
direction = "↘ ";
|
||||
} else if left < right {
|
||||
diff = right - left;
|
||||
direction = "🡕 ";
|
||||
direction = "↗ ";
|
||||
} else {
|
||||
diff = 0;
|
||||
direction = "";
|
||||
|
@ -157,10 +157,10 @@ impl<'a> EvaluationStatsDiff<'a> {
|
|||
|
||||
if left > right {
|
||||
diff = left - right;
|
||||
direction = "🡖 ";
|
||||
direction = "↘ ";
|
||||
} else if left < right {
|
||||
diff = right - left;
|
||||
direction = "🡕 ";
|
||||
direction = "↗ ";
|
||||
} else {
|
||||
diff = 0.0;
|
||||
direction = "";
|
||||
|
|
Loading…
Reference in a new issue