From 96ede6a43f95bf73e9b3786c7aa46846020850ee Mon Sep 17 00:00:00 2001 From: MathBunny Date: Sat, 22 Aug 2020 23:05:27 -0400 Subject: [PATCH] fix: Address typo in log statement --- src/lib/cli.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cli.ts b/src/lib/cli.ts index 1e48ea729..42837a431 100644 --- a/src/lib/cli.ts +++ b/src/lib/cli.ts @@ -61,7 +61,7 @@ export class CliApplication extends Application { } if (!this.out && !this.json) { this.logger.log("No 'out' or 'json' option has been set"); - this.logger.log("The './docs' directory has be set as the output location by default"); + this.logger.log("The './docs' directory has been set as the output location by default"); this.generateDocs(project, './docs'); } if (this.logger.hasErrors()) {