From 3971793ceec305844f27080c7c93aebe6e0be76d Mon Sep 17 00:00:00 2001 From: Manon Faour Date: Mon, 7 Aug 2023 14:37:03 +0100 Subject: [PATCH] fix: use same format for all command and options formats --- src/args.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/args.ts b/src/args.ts index ad7c4e04..4190ef39 100644 --- a/src/args.ts +++ b/src/args.ts @@ -51,7 +51,7 @@ export const getYargs = async (): Promise => { default: false, }) .option("model", { - description: "The model to use for generating the review", + description: "The model to use for generating the review.", type: "string", default: "gpt-4", }) @@ -63,12 +63,12 @@ export const getYargs = async (): Promise => { default: "changed", }) .option("debug", { - description: "Enables debug logging", + description: "Enables debug logging.", type: "boolean", default: false, }) - .command("review", "Review the pull request") - .command("configure", "Configure the script") + .command("review", "Review the pull request.") + .command("configure", "Configure the script.") .parseSync(); if (!argv._[0]) {