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
This commit is contained in:
Marshall Bowers 2025-07-29 11:45:49 -04:00 committed by GitHub
parent 2fced602b8
commit a8bdf30259
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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}"))
}
}