From 6b379085ad4a55379d7e44265b48aa51e73a549f Mon Sep 17 00:00:00 2001 From: jdegand <70610011+jdegand@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:34:49 -0500 Subject: [PATCH] fix: choosed typo --- apps/typescript/enums-vs-union-types/src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/typescript/enums-vs-union-types/src/app/app.component.ts b/apps/typescript/enums-vs-union-types/src/app/app.component.ts index 12fae6d..d824705 100644 --- a/apps/typescript/enums-vs-union-types/src/app/app.component.ts +++ b/apps/typescript/enums-vs-union-types/src/app/app.component.ts @@ -70,7 +70,7 @@ export class AppComponent { }); readonly directionLabel = computed(() => { - const prefix = 'You choosed to go'; + const prefix = 'You chose to go'; switch (this.direction()) { case Direction.LEFT: return `${prefix} ${Direction.LEFT}`;