From 896f78099147f1e87541536a81a235db068fcda1 Mon Sep 17 00:00:00 2001 From: scott willeke Date: Wed, 3 May 2023 11:44:14 -0700 Subject: [PATCH] docs: fix WorkflowTemplate file link in readme --- workflow-parser/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workflow-parser/README.md b/workflow-parser/README.md index e480668..a916a4f 100644 --- a/workflow-parser/README.md +++ b/workflow-parser/README.md @@ -35,7 +35,7 @@ jobs: ); ``` -`convertWorkflowTemplate` then takes that intermediate representation and converts it to a [`WorkflowTemplate`](./src/workflow-template.ts) object, which is a more convenient representation for working with workflows. +`convertWorkflowTemplate` then takes that intermediate representation and converts it to a [`WorkflowTemplate`](./src/model/workflow-template.ts) object, which is a more convenient representation for working with workflows. ```typescript const workflowTemplate = await convertWorkflowTemplate(result.context, result.value);