From c0b211ee19452e9bdaa5a85345d73f416988825c Mon Sep 17 00:00:00 2001 From: Ville Laitila Date: Tue, 27 Mar 2018 14:50:26 +0300 Subject: [PATCH] Small fix to CLI help --safe was having incorrect statement about its behavior. Added the missing 'not' word. --- bin/require-analyzer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/require-analyzer b/bin/require-analyzer index 61b5216..aaff6a6 100755 --- a/bin/require-analyzer +++ b/bin/require-analyzer @@ -18,7 +18,7 @@ var help = [ ' -d, --dir Directory to check for package.json', ' --update Update versions for existing dependencies', ' -f, --file File to check for instead of package.json.', - ' --safe display existing dependencies but do change package.json', + ' --safe display existing dependencies but do not change package.json', ' -h, --help You\'re staring at it' ].join('\n');