Skip to content

Commit

Permalink
refactor: update BaseStackableChain.cs
Browse files Browse the repository at this point in the history
occured -> occurred
  • Loading branch information
eltociear authored Apr 29, 2024
1 parent a821d0e commit 1e0d455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Core/src/Chains/StackableChains/BaseStackableChain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public Task<IChainValues> CallAsync(IChainValues values, ICallbacks? callbacks =
? GenerateName()
: Name;
var inputValues = FormatInputValues(values);
var message = $"Error occured in {name} with inputs \n{inputValues}\n.";
var message = $"Error occurred in {name} with inputs \n{inputValues}\n.";

throw new StackableChainException(message, ex);
}
Expand Down Expand Up @@ -228,4 +228,4 @@ public void SetHook(Action<IChainValues> hook)
{
_hook = hook;
}
}
}

0 comments on commit 1e0d455

Please sign in to comment.