From cc1416a7a83efd363350351b88c3317a5ddd46dd Mon Sep 17 00:00:00 2001 From: Andrew Trepagnier Date: Sun, 28 Sep 2025 15:30:54 -0500 Subject: [PATCH 1/2] Fix URL in concern comment --- src/handlers/concern.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/concern.rs b/src/handlers/concern.rs index ca79d54e7..26703c417 100644 --- a/src/handlers/concern.rs +++ b/src/handlers/concern.rs @@ -232,7 +232,7 @@ fn simple_markdown_content() { Concern { title: "This is a resolved concern".to_string(), status: ConcernStatus::Resolved { - comment_url: "https:://github.com/fake-comment-8888".to_string(), + comment_url: "https://github.com/fake-comment-8888".to_string(), }, comment_url: "https://github.com/fake-comment-4561".to_string(), }, From 0b16cb5f75887004b416328984331833121dd19c Mon Sep 17 00:00:00 2001 From: Andrew Trepagnier Date: Sun, 28 Sep 2025 20:15:52 -0500 Subject: [PATCH 2/2] Fix URL typo in concerns comments --- src/handlers/concern.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/handlers/concern.rs b/src/handlers/concern.rs index 26703c417..33f072428 100644 --- a/src/handlers/concern.rs +++ b/src/handlers/concern.rs @@ -245,7 +245,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.* "# @@ -257,7 +257,7 @@ fn resolved_concerns_markdown_content() { let concerns = &[Concern { title: "This is a resolved concern".to_string(), status: ConcernStatus::Resolved { - comment_url: "https:://github.com/fake-comment-8888".to_string(), + comment_url: "https://github.com/fake-comment-8888".to_string(), }, comment_url: "https://github.com/fake-comment-4561".to_string(), }]; @@ -268,7 +268,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.* "#