Add a missing default value to docs (#3973)

Piotr Osiewicz created

Release Notes:

- N/A

Change summary

crates/call/src/call_settings.rs | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

crates/call/src/call_settings.rs 🔗

@@ -9,9 +9,12 @@ pub struct CallSettings {
     pub mute_on_join: bool,
 }
 
+/// Configuration of voice calls in Zed.
 #[derive(Clone, Default, Serialize, Deserialize, JsonSchema, Debug)]
 pub struct CallSettingsContent {
     /// Whether the microphone should be muted when joining a channel or a call.
+    ///
+    /// Default: false
     pub mute_on_join: Option<bool>,
 }