From 65c61cc6d16241ed310d628211902f13bc4dec27 Mon Sep 17 00:00:00 2001 From: Scott Offen <3513626+scottoffen@users.noreply.github.com> Date: Mon, 28 Jul 2025 08:45:34 -0600 Subject: [PATCH 1/2] Add line breaks --- src/PipeForge/IPipelineRunner.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PipeForge/IPipelineRunner.cs b/src/PipeForge/IPipelineRunner.cs index 1cdfb88..baf58ec 100644 --- a/src/PipeForge/IPipelineRunner.cs +++ b/src/PipeForge/IPipelineRunner.cs @@ -43,3 +43,5 @@ public interface IPipelineRunner public interface IPipelineRunner : IPipelineRunner> where TContext : class { } + + From cacd8310d32dc3ce8e4c2004e6dfb653ab71ae5c Mon Sep 17 00:00:00 2001 From: Scott Offen <3513626+scottoffen@users.noreply.github.com> Date: Mon, 28 Jul 2025 08:48:14 -0600 Subject: [PATCH 2/2] Remove line breaks --- src/PipeForge/IPipelineRunner.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/PipeForge/IPipelineRunner.cs b/src/PipeForge/IPipelineRunner.cs index baf58ec..1cfc8f7 100644 --- a/src/PipeForge/IPipelineRunner.cs +++ b/src/PipeForge/IPipelineRunner.cs @@ -34,14 +34,12 @@ public interface IPipelineRunner /// /// Represents a pipeline runner for a specific context type, using as the step interface. /// -/// +/// /// The type of the context that is passed to each pipeline step. /// /// /// This interface simplifies registration and resolution when a custom step interface is not needed. /// -public interface IPipelineRunner : IPipelineRunner> - where TContext : class +public interface IPipelineRunner : IPipelineRunner> + where TContexts : class { } - -