client: Fix ACP registry blog post URL (#47881) (cherry-pick to preview) (#47892)

zed-zippy[bot] , O. Bennett , and MrSubidubi created

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 <finn@zed.dev>

Co-authored-by: O. Bennett <illogic-al@users.noreply.github.com>
Co-authored-by: MrSubidubi <finn@zed.dev>

Change summary

crates/client/src/zed_urls.rs | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Detailed changes

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 {