From 4db795fa7d56a3d3cf14703da92b9e0da4686473 Mon Sep 17 00:00:00 2001 From: Ryan Zimmerman Date: Wed, 17 Oct 2018 21:19:29 -0400 Subject: [PATCH] Clarify docs for --config flag Fixes #233 --- README.md | 2 +- lib/args.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5d0d4c3..372170c 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Advanced options: directory, for use with --dir [string] --poll Use polling for file watching. Can optionally pass polling interval; default 100 ms - --config Set a custom path to look for a config file [string] + --config Set a custom directory to look for a config file [string] Options: --version Show version number [boolean] diff --git a/lib/args.js b/lib/args.js index 7476023..1855260 100644 --- a/lib/args.js +++ b/lib/args.js @@ -118,7 +118,7 @@ Usage: implies: 'watch' }) .option('config', { - desc: 'Set a custom path to look for a config file', + desc: 'Set a custom directory to look for a config file', type: 'string' }) .version(version)