From af1ec2d0f094ef559e51c4a295862c2cc4948b51 Mon Sep 17 00:00:00 2001 From: "Shkar T. Noori" Date: Sat, 18 Jun 2022 12:25:26 +0300 Subject: [PATCH] Fixed parameter name --- src/DIT.Workflower/Abstractions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DIT.Workflower/Abstractions.cs b/src/DIT.Workflower/Abstractions.cs index a575804..5e899dd 100644 --- a/src/DIT.Workflower/Abstractions.cs +++ b/src/DIT.Workflower/Abstractions.cs @@ -18,7 +18,7 @@ public interface ITransitionExit where TState : struct where TCommand : struct { - ITransitionDone To(in TState command); + ITransitionDone To(in TState state); } public interface ITransitionCondition : ITransitionExit