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}`;