From 6b81324531b43a80e4d59570b7a1b7808f8e9e8a Mon Sep 17 00:00:00 2001 From: Luke Hamburg Date: Sat, 13 Jun 2020 10:05:43 -0400 Subject: [PATCH] --help: fix typo, clarify --icon helptext (PR #976) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - correct small typo (`he`→`the`) - clarify that `--icon` accepts .icns on macOS --- src/cli.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.ts b/src/cli.ts index 35936cf..bed5685 100755 --- a/src/cli.ts +++ b/src/cli.ts @@ -132,11 +132,11 @@ if (require.main === module) { ) .option( '--bounce', - '(macOS only) make he dock icon bounce when the counter increases; defaults to false', + '(macOS only) make the dock icon bounce when the counter increases; defaults to false', ) .option( '-i, --icon ', - 'the icon file to use as the icon for the app (should be a .png)', + 'the icon file to use as the icon for the app (should be a .png, on macOS can also be an .icns)', ) .option( '--width ',