From cf57a8482deab59f949280a62ece062e277024ab Mon Sep 17 00:00:00 2001 From: Will Harney <62956339+wjhsf@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:40:02 -0400 Subject: [PATCH 1/2] docs: fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 024faab..8cc81ea 100644 --- a/README.md +++ b/README.md @@ -169,7 +169,7 @@ Full usage information: $ github-codeowners validate --help Usage: github-codeowners validate [options] -Validates a CODOWNER file and files in dir +Validates a CODEOWNERS file and files in dir Options: -d, --dir path to VCS directory (default: "") From 454f84f14da861a8bb94eebc73a4c312cab17476 Mon Sep 17 00:00:00 2001 From: Will Harney <62956339+wjhsf@users.noreply.github.com> Date: Fri, 25 Oct 2024 10:42:03 -0400 Subject: [PATCH 2/2] docs: fix typo --- src/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.ts b/src/cli.ts index 05b6abd..d041f4f 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -42,7 +42,7 @@ commander.command('audit') }); commander.command('validate') - .description('Validates a CODOWNER file and files in dir') + .description('Validates a CODEOWNERS file and files in dir') .option('-d, --dir ', 'path to VCS directory', process.cwd()) .option('-c, --codeowners ', 'path to codeowners file (default: "/.github/CODEOWNERS")') .option('-r, --root ', 'the root path to filter files by', '')