Skip to content

Commit

Permalink
fix error typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepeterson committed Oct 3, 2024
1 parent f2ab312 commit cd9c6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ func (e *Engine) StartWorkflow(ctx context.Context, name string, context []byte,
return instanceID, fmt.Errorf("converting step start: %w", err)
}
if err = w.Start(ctx, ss); err != nil {
return instanceID, fmt.Errorf("staring workflow: %w", err)
return instanceID, fmt.Errorf("starting workflow: %w", err)
}
if err = e.storage.RecordWorkflowStarted(ctx, startID, name, time.Now()); err != nil {
return instanceID, fmt.Errorf("recording workflow status: %w", err)
Expand Down

0 comments on commit cd9c6f2

Please sign in to comment.