Follow naming convention for menu items

Joseph T. Lyons created

Change summary

crates/project_panel/src/project_panel.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/project_panel/src/project_panel.rs 🔗

@@ -430,7 +430,7 @@ impl ProjectPanel {
             menu_entries.push(ContextMenuItem::action("Reveal in Finder", RevealInFinder));
             if entry.is_dir() {
                 menu_entries.push(ContextMenuItem::action(
-                    "Search inside",
+                    "Search Inside",
                     NewSearchInDirectory,
                 ));
             }