Skip to content

Commit 1b7953b

Browse files
committed
Shorten the bot's most/less reliable metric help texts
1 parent 9a690ff commit 1b7953b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

site/src/github/comparison_summary.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ fn write_metric_summary(
325325
match visibility {
326326
DefaultMetricVisibility::Shown => {
327327
message.push_str(
328-
"This is the most reliable metric that we have; it was used to determine the \
329-
overall result at the top of this comment. However, even this metric can sometimes exhibit noise.\n\n",
328+
"Our most reliable metric. Used to determine the overall result above. \
329+
However, even this metric can be noisy.\n\n",
330330
);
331331
write_summary_table(&primary, &secondary, false, message);
332332
}
@@ -351,8 +351,8 @@ fn write_metric_summary(
351351
// `<details>` means it is hidden, requiring a click to reveal.
352352
message.push_str(&format!("<details>\n<summary>{summary}</summary>\n\n"));
353353
message.push_str(
354-
"This is a less reliable metric that may be of interest but was not \
355-
used to determine the overall result at the top of this comment.\n\n",
354+
"A less reliable metric. May be of interest, but not \
355+
used to determine the overall result above.\n\n",
356356
);
357357
write_summary_table(&primary, &secondary, false, message);
358358
message.push_str("</details>\n");

0 commit comments

Comments
 (0)