Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/PipeForge/IPipelineRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ public interface IPipelineRunner<TContext, TStepInterface>
/// <summary>
/// Represents a pipeline runner for a specific context type, using <see cref="IPipelineStep{TContext}"/> as the step interface.
/// </summary>
/// <typeparam name="TContext">
/// <typeparam name="TContexts">
/// The type of the context that is passed to each pipeline step.
/// </typeparam>
/// <remarks>
/// This interface simplifies registration and resolution when a custom step interface is not needed.
/// </remarks>
public interface IPipelineRunner<TContext> : IPipelineRunner<TContext, IPipelineStep<TContext>>
where TContext : class
public interface IPipelineRunner<TContexts> : IPipelineRunner<TContexts, IPipelineStep<TContexts>>
where TContexts : class
{ }