Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/handlers/concern.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ fn markdown_content(concerns: &[Concern], bot: &str) -> String {
} => {
writeln!(
md,
"> - ~~[{title}]({comment_url})~~ resolved [in this comment]({resolved_comment_url})"
"> - ~~[{title}]({comment_url})~~ resolved in [this comment]({resolved_comment_url})"
)
}
};
Expand Down Expand Up @@ -231,7 +231,7 @@ fn simple_markdown_content() {
> # Concerns (1 active)
>
> - [This is my concern about concern](https://github.com/fake-comment-1234)
> - ~~[This is a resolved concern](https://github.com/fake-comment-4561)~~ resolved [in this comment](https:://github.com/fake-comment-8888)
> - ~~[This is a resolved concern](https://github.com/fake-comment-4561)~~ resolved in [this comment](https:://github.com/fake-comment-8888)
>
> *Managed by `@rustbot`—see [help](https://forge.rust-lang.org/triagebot/concern.html) for details.*
"#
Expand All @@ -254,7 +254,7 @@ fn resolved_concerns_markdown_content() {
> [!NOTE]
> # Concerns (0 active)
>
> - ~~[This is a resolved concern](https://github.com/fake-comment-4561)~~ resolved [in this comment](https:://github.com/fake-comment-8888)
> - ~~[This is a resolved concern](https://github.com/fake-comment-4561)~~ resolved in [this comment](https:://github.com/fake-comment-8888)
>
> *Managed by `@rustbot`—see [help](https://forge.rust-lang.org/triagebot/concern.html) for details.*
"#
Expand Down
Loading