diff --git a/Xcodes/Backend/XcodeCommands.swift b/Xcodes/Backend/XcodeCommands.swift index 9045629..1569eaa 100644 --- a/Xcodes/Backend/XcodeCommands.swift +++ b/Xcodes/Backend/XcodeCommands.swift @@ -111,7 +111,7 @@ struct CopyPathButton: View { Button(action: copyPath) { Text("Copy Path") } - .help("Copy Path") + .help("Copy path") } private func copyPath() { diff --git a/Xcodes/Frontend/XcodeList/MainToolbar.swift b/Xcodes/Frontend/XcodeList/MainToolbar.swift index 96afef9..8c804b8 100644 --- a/Xcodes/Frontend/XcodeList/MainToolbar.swift +++ b/Xcodes/Frontend/XcodeList/MainToolbar.swift @@ -36,7 +36,7 @@ struct MainToolbarModifier: ViewModifier { .foregroundColor(.accentColor) } } - .help("Filter Installed Versions") + .help("Filter installed versions") Button(action: { isShowingInfoPane.toggle() }) { if isShowingInfoPane { @@ -47,12 +47,12 @@ struct MainToolbarModifier: ViewModifier { } } .keyboardShortcut(KeyboardShortcut("i", modifiers: [.command, .option])) - .help("Info Pane") + .help("Show or hide the info pane") TextField("Search...", text: $searchText) .textFieldStyle(RoundedBorderTextFieldStyle()) .frame(width: 200) - .help("Search List") + .help("Search list") } } }