From 6de927413b30e9db7001136bd5aaa2a24455eeed Mon Sep 17 00:00:00 2001 From: Adrian Smijulj Date: Tue, 9 Jun 2020 09:46:06 +0200 Subject: [PATCH] fix: remove dots in "describe" strings --- src/bin/contreebutors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/contreebutors.ts b/src/bin/contreebutors.ts index 7453e1b..531e7b9 100755 --- a/src/bin/contreebutors.ts +++ b/src/bin/contreebutors.ts @@ -17,7 +17,7 @@ const createHandler = callback => { yargs.command({ command: "add", - describe: "Adds a new contributor to the contributors list.", + describe: "Adds a new contributor to the contributors list", builder: { username: { type: "string", @@ -33,7 +33,7 @@ yargs.command({ yargs.command({ command: "render", - describe: "Renders the contributors list in specified file (README.md by default).", + describe: "Renders the contributors list in specified file (README.md by default)", handler: createHandler(async function() { const contreebutors = new Contreebutors(); return contreebutors.render();