Skip to content

Commit

Permalink
fix: chains error message
Browse files Browse the repository at this point in the history
  • Loading branch information
nuffin committed Nov 9, 2024
1 parent 8c24b68 commit e5f5b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chains/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var (

// ErrMultipleInputsInRun is returned in the run function if the chain expects
// more then one input values.
ErrMultipleInputsInRun = errors.New("run not supported in chain with more then one expected input")
ErrMultipleInputsInRun = errors.New("run not supported in chain with zero or more than one expected input")
// ErrMultipleOutputsInRun is returned in the run function if the chain expects
// more then one output values.
ErrMultipleOutputsInRun = errors.New("run not supported in chain with more then one expected output")
Expand Down

0 comments on commit e5f5b11

Please sign in to comment.