From 1c1a6578c2904ec5281f39e0935b453e28bc7e8f Mon Sep 17 00:00:00 2001 From: "O. Bennett" Date: Wed, 28 Jan 2026 13:28:53 -0500 Subject: [PATCH] client: Fix ACP registry blog post URL (#47881) Closes #47882 Release Notes: - Fixed a typo in the link to the ACP registry URL blog post --------- Co-authored-by: MrSubidubi --- crates/client/src/zed_urls.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/client/src/zed_urls.rs b/crates/client/src/zed_urls.rs index fc96efa9c55db569e042ea28a8ef5d7debc91df5..2d0eedc9179a0ba2b640a8ed28366e47c0f0c397 100644 --- a/crates/client/src/zed_urls.rs +++ b/crates/client/src/zed_urls.rs @@ -70,7 +70,10 @@ pub fn edit_prediction_docs(cx: &App) -> String { /// Returns the URL to Zed's ACP registry blog post. pub fn acp_registry_blog(cx: &App) -> String { - format!("{server_url}/blog/acp-registy", server_url = server_url(cx)) + format!( + "{server_url}/blog/acp-registry", + server_url = server_url(cx) + ) } pub fn shared_agent_thread_url(session_id: &str) -> String {