collab: Fix typo in log message (#34455)

Marshall Bowers created

This PR fixes a small typo in a log message.

Release Notes:

- N/A

Change summary

crates/collab/src/api/billing.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/collab/src/api/billing.rs 🔗

@@ -1428,7 +1428,7 @@ async fn sync_model_request_usage_with_stripe(
     let get_zed_pro_subscriptions_started_at = Utc::now();
     let billing_subscriptions = app.db.get_active_zed_pro_billing_subscriptions().await?;
     log::info!(
-        "Stripe usage sync: Retrieved {} Zed pro subscriptions in {}",
+        "Stripe usage sync: Retrieved {} Zed Pro subscriptions in {}",
         billing_subscriptions.len(),
         Utc::now() - get_zed_pro_subscriptions_started_at
     );