diff --git a/src/core/tasks/from-kpo.ts b/src/core/tasks/from-kpo.ts index a7d0277..e43b60c 100644 --- a/src/core/tasks/from-kpo.ts +++ b/src/core/tasks/from-kpo.ts @@ -35,7 +35,7 @@ export function trunk(arr: string[], obj: any, path: string): ITask { ); } if (!props.length) { - throw Error(`There no tasks matching ${path ? `${path}.${key}` : key}`); + throw Error(`There is no task matching ${path ? `${path}.${key}` : key}`); } const actualKey = props.shift() as string; const task = trunk(arr, obj[actualKey], `${path}.${actualKey}`);