Fixed parameter name

This commit is contained in:
Shkar T. Noori 2022-06-18 12:25:26 +03:00
parent 8d9b7d4134
commit af1ec2d0f0
No known key found for this signature in database
GPG Key ID: C5E1A00F3BB78732

View File

@ -18,7 +18,7 @@ public interface ITransitionExit<TState, TCommand, TContext>
where TState : struct
where TCommand : struct
{
ITransitionDone<TState, TCommand, TContext> To(in TState command);
ITransitionDone<TState, TCommand, TContext> To(in TState state);
}
public interface ITransitionCondition<TState, TCommand, TContext> : ITransitionExit<TState, TCommand, TContext>