From 5cc1c5f9e226c8f348f673d09721017e5e4d87a6 Mon Sep 17 00:00:00 2001 From: Steven Roussey Date: Fri, 31 Jan 2025 09:19:05 -0800 Subject: [PATCH] fix: comments --- packages/core/src/task/base/OutputTask.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/core/src/task/base/OutputTask.ts b/packages/core/src/task/base/OutputTask.ts index 5c26526..281b79b 100644 --- a/packages/core/src/task/base/OutputTask.ts +++ b/packages/core/src/task/base/OutputTask.ts @@ -8,8 +8,7 @@ import { SingleTask, TaskInput } from "./Task"; /** - * A task class that handles array-based processing by creating subtasks for each combination of inputs - * Extends RegenerativeCompoundTask to manage a collection of child tasks running in parallel + * Output tasks have side effects, and so need to always run and not be cached */ export class OutputTask extends SingleTask { static readonly category = "Output";