From 23e7d3a66326a3889b1bddfe662f2e67ab89654f Mon Sep 17 00:00:00 2001 From: Koichi Shiraishi Date: Sat, 12 Mar 2022 08:59:38 +0900 Subject: [PATCH] workflow_step: fix typo on SaveWorkflowStepConfigurationContext Signed-off-by: Koichi Shiraishi --- workflow_step.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow_step.go b/workflow_step.go index 925864c36..bcc892c5a 100644 --- a/workflow_step.go +++ b/workflow_step.go @@ -45,10 +45,10 @@ func NewConfigurationModalRequest(blocks Blocks, privateMetaData string, externa } func (api *Client) SaveWorkflowStepConfiguration(workflowStepEditID string, inputs *WorkflowStepInputs, outputs *[]WorkflowStepOutput) error { - return api.SaveWorkflowStepConfigurationConetxt(context.Background(), workflowStepEditID, inputs, outputs) + return api.SaveWorkflowStepConfigurationContext(context.Background(), workflowStepEditID, inputs, outputs) } -func (api *Client) SaveWorkflowStepConfigurationConetxt(ctx context.Context, workflowStepEditID string, inputs *WorkflowStepInputs, outputs *[]WorkflowStepOutput) error { +func (api *Client) SaveWorkflowStepConfigurationContext(ctx context.Context, workflowStepEditID string, inputs *WorkflowStepInputs, outputs *[]WorkflowStepOutput) error { // More information: https://api.slack.com/methods/workflows.updateStep wscr := WorkflowStepCompleteResponse{ WorkflowStepEditID: workflowStepEditID,