Skip to content

Commit

Permalink
fix: remove dots in "describe" strings
Browse files Browse the repository at this point in the history
  • Loading branch information
adrians5j committed Jun 9, 2020
1 parent a7be584 commit 6de9274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/contreebutors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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();
Expand Down

0 comments on commit 6de9274

Please sign in to comment.