From b664ab329fab300548a2091a41bc85b8ed93ef07 Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Mon, 28 Nov 2022 08:56:08 -0800 Subject: [PATCH] Fix typo in comment --- actions-languageservice/src/context/workflow-context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions-languageservice/src/context/workflow-context.ts b/actions-languageservice/src/context/workflow-context.ts index 5dbcc0a..264f799 100644 --- a/actions-languageservice/src/context/workflow-context.ts +++ b/actions-languageservice/src/context/workflow-context.ts @@ -11,7 +11,7 @@ export interface WorkflowContext { /** If the context is for a position within a job, this will be the job */ job?: JobConfig; - /** If the context is for a position within a step, this will the step */ + /** If the context is for a position within a step, this will be the step */ step?: StepConfig; }