From a14e4bf65da7a1cc54fea6cbf869ffc912811188 Mon Sep 17 00:00:00 2001 From: Danny Martini Date: Wed, 18 Sep 2024 14:10:13 +0200 Subject: [PATCH] fix grammar in docs Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com> --- packages/core/src/PartialExecutionUtils/DirectedGraph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/PartialExecutionUtils/DirectedGraph.ts b/packages/core/src/PartialExecutionUtils/DirectedGraph.ts index 89103301beb21..cf9035e026320 100644 --- a/packages/core/src/PartialExecutionUtils/DirectedGraph.ts +++ b/packages/core/src/PartialExecutionUtils/DirectedGraph.ts @@ -21,7 +21,7 @@ type DirectedGraphKey = `${string}-${NodeConnectionType}-${number}-${number}-${s * The reason why this exists next to the Workflow class is that the workflow * class stored the graph in a deeply nested, normalized format. This format * does not lend itself to editing the graph or build graphs incrementally. - * This class is closes this gap by having import and export functions: + * This closes this gap by having import and export functions: * `fromWorkflow`, `toWorkflow`. * * Thus it allows to do something like this: