From 586d953133e10af4639625a014fc143735989ed8 Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Wed, 28 Jan 2026 19:12:46 +0000 Subject: [PATCH] client: Fix ACP registry blog post URL (#47881) (cherry-pick to preview) (#47892) Cherry-pick of #47881 to preview ---- Closes #47882 Release Notes: - Fixed a typo in the link to the ACP registry URL blog post --------- Co-authored-by: MrSubidubi Co-authored-by: O. Bennett 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 {