From 6e424147d9f902aa0012c6b6ba65da20e5347fe6 Mon Sep 17 00:00:00 2001 From: Satoshi SAKAO Date: Tue, 28 Feb 2017 23:18:38 +0900 Subject: [PATCH 1/2] fix parser options in README "temp.log" must be string --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 501779e..cd04a26 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ The array associated with it is the options to apply to that argument. ### Example ```javascript cli.parse({ - file: [ 'f', 'A file to process', 'file', temp.log ], // -f, --file FILE A file to process + file: [ 'f', 'A file to process', 'file', 'temp.log' ], // -f, --file FILE A file to process time: [ 't', 'An access time', 'time', false], // -t, --time TIME An access time work: [ false, 'What kind of work to do', 'string', 'sleep' ] // --work STRING What kind of work to do }); From 4aaafa2870b9363b989d0d3d0746b57a8ac31ca8 Mon Sep 17 00:00:00 2001 From: Satoshi SAKAO Date: Wed, 1 Mar 2017 19:20:32 +0900 Subject: [PATCH 2/2] fix typo regex -> regexp --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd04a26..45856e0 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,7 @@ cli.toType(new Date()); // 'date' cli.toType(1); // 'integer' cli.toType(1.1); // 'float' cli.toType(Math); // 'math' -cli.toType(/a/); // 'regex' +cli.toType(/a/); // 'regexp' cli.toType(JSON); // 'json' ```