Fix casing of OpenZedUrl action (#7045)

This PR updates the casing of the `OpenZedUrl` action to match the [Rust
naming
guidelines](https://rust-lang.github.io/api-guidelines/naming.html).

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-01-29 23:50:31 -05:00 committed by GitHub
parent 0cb8b0e451
commit 372bc427bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -16,10 +16,10 @@ pub struct OpenBrowser {
}
#[derive(Clone, PartialEq, Deserialize)]
pub struct OpenZedURL {
pub struct OpenZedUrl {
pub url: String,
}
impl_actions!(zed, [OpenBrowser, OpenZedURL]);
impl_actions!(zed, [OpenBrowser, OpenZedUrl]);
actions!(zed, [OpenSettings, Quit]);