From c99cfc63fca7b9f91fea6c183c8fc9ff2729bcb3 Mon Sep 17 00:00:00 2001 From: Zakher Masri <46135573+zaaakher@users.noreply.github.com> Date: Fri, 23 Aug 2024 01:24:45 +0300 Subject: [PATCH] fix: tiny typo in exit text Fixes a tiny typo accidentally made by https://github.com/voidcosmos/npkill/pull/187 --- src/ui/components/general.ui.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/components/general.ui.ts b/src/ui/components/general.ui.ts index 80b12c3..7f0da49 100644 --- a/src/ui/components/general.ui.ts +++ b/src/ui/components/general.ui.ts @@ -9,7 +9,7 @@ export class GeneralUi extends BaseUi { printExitMessage(stats: { spaceReleased: string }): void { const { spaceReleased } = stats; let exitMessage = `Space released: ${spaceReleased}\n`; - exitMessage += colors['gray']('Thanks for using npkill!\n Like it? Give us a start http://github.com/voidcosmos/npkill\n'); + exitMessage += colors['gray']('Thanks for using npkill!\n Like it? Give us a star http://github.com/voidcosmos/npkill\n'); this.print(exitMessage); } }