Skip to content

Commit 5e70afd

Browse files
committed
Use Title Case in app menu options (match OS norms)
1 parent 5673ce3 commit 5e70afd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/menu.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ export const getMenu = (browserWindows: Electron.BrowserWindow[]) => {
5252
role: 'help',
5353
submenu: [
5454
{
55-
label: 'Open documentation',
55+
label: 'Open Documentation',
5656
click () { require('electron').shell.openExternal('https://httptoolkit.tech/docs') }
5757
},
5858
{
59-
label: 'Share your feedback',
59+
label: 'Share Your Feedback',
6060
click () { require('electron').shell.openExternal('https://github.com/httptoolkit/httptoolkit/issues/new/choose') }
6161
},
6262
{
63-
label: 'View HTTP Toolkit logs',
63+
label: 'View HTTP Toolkit Logs',
6464
click () { require('electron').shell.showItemInFolder(path.join(app.getPath('logs'), 'last-run.log')) }
6565
}
6666
]

0 commit comments

Comments
 (0)