diff --git a/crates/auto_update/src/auto_update.rs b/crates/auto_update/src/auto_update.rs index 70039060ca..1123d3f8e2 100644 --- a/crates/auto_update/src/auto_update.rs +++ b/crates/auto_update/src/auto_update.rs @@ -35,7 +35,7 @@ actions!( Check, /// Dismisses the update error message. DismissErrorMessage, - /// Opens the release notes for the current version. + /// Opens the release notes for the current version in a browser. ViewReleaseNotes, ] ); diff --git a/crates/auto_update_ui/src/auto_update_ui.rs b/crates/auto_update_ui/src/auto_update_ui.rs index 5d79fb5db8..63baef1f7d 100644 --- a/crates/auto_update_ui/src/auto_update_ui.rs +++ b/crates/auto_update_ui/src/auto_update_ui.rs @@ -15,7 +15,7 @@ use workspace::notifications::{NotificationId, show_app_notification}; actions!( auto_update, [ - /// Opens release notes in the browser for the current version. + /// Opens the release notes for the current version in a new tab. ViewReleaseNotesLocally ] );