Change summary
crates/editor/src/mouse_context_menu.rs | 4 ++--
crates/zed/src/menus.rs | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
Detailed changes
@@ -52,8 +52,8 @@ pub fn deploy_context_menu(
AnchorCorner::TopLeft,
vec![
ContextMenuItem::item("Rename Symbol", Rename),
- ContextMenuItem::item("Go To Definition", GoToDefinition),
- ContextMenuItem::item("Go To Type Definition", GoToTypeDefinition),
+ ContextMenuItem::item("Go to Definition", GoToDefinition),
+ ContextMenuItem::item("Go to Type Definition", GoToTypeDefinition),
ContextMenuItem::item("Find All References", FindAllReferences),
ContextMenuItem::item(
"Code Actions",
@@ -293,7 +293,7 @@ pub fn menus() -> Vec<Menu<'static>> {
action: Box::new(editor::GoToTypeDefinition),
},
MenuItem::Action {
- name: "Go to References",
+ name: "Find All References",
action: Box::new(editor::FindAllReferences),
},
MenuItem::Action {