In Help menu, replace 'zed.dev' item with 'Documentation'

This commit is contained in:
Max Brunsfeld 2022-07-11 13:00:37 -07:00
parent 1e85d6f07d
commit dc1956fe69

View file

@ -298,15 +298,15 @@ pub fn menus() -> Vec<Menu<'static>> {
},
MenuItem::Separator,
MenuItem::Action {
name: "Give Feedback",
name: "Documentation",
action: Box::new(crate::OpenBrowser {
url: super::feedback::NEW_ISSUE_URL.into(),
url: "https://zed.dev/docs".into(),
}),
},
MenuItem::Action {
name: "Zed.dev",
name: "Give Feedback",
action: Box::new(crate::OpenBrowser {
url: "https://zed.dev".into(),
url: super::feedback::NEW_ISSUE_URL.into(),
}),
},
MenuItem::Action {