From 12ab53b8045bde2c1eb5a24d16f32643befcfb3d Mon Sep 17 00:00:00 2001 From: Ben Kunkle Date: Thu, 3 Jul 2025 09:22:28 -0500 Subject: [PATCH] Fix documentation of view release notes actions (#33851) Follow up for: #33809 Release Notes: - N/A *or* Added/Fixed/Improved ... --- crates/auto_update/src/auto_update.rs | 2 +- crates/auto_update_ui/src/auto_update_ui.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 ] );