From a8bdf30259e93be218c6402c2f544f4932b92c68 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 29 Jul 2025 11:45:49 -0400 Subject: [PATCH] client: Fix typo in the error message (#35275) This PR fixes a typo in the error message for when we fail to parse the Collab URL. Release Notes: - N/A --- crates/client/src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/client/src/client.rs b/crates/client/src/client.rs index 81bb95b514..07df7043b5 100644 --- a/crates/client/src/client.rs +++ b/crates/client/src/client.rs @@ -1138,7 +1138,7 @@ impl Client { .to_str() .map_err(EstablishConnectionError::other)? .to_string(); - Url::parse(&collab_url).with_context(|| format!("parsing colab rpc url {collab_url}")) + Url::parse(&collab_url).with_context(|| format!("parsing collab rpc url {collab_url}")) } }