From 53b1e5d142c6501e7488e9861bc4f5232eaca984 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 22 Jul 2025 12:03:03 -0500 Subject: [PATCH] docs: remove duplicates Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../Routing/RouteSwitchDescriptor.cs | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/PepperDash.Essentials.Core/Routing/RouteSwitchDescriptor.cs b/src/PepperDash.Essentials.Core/Routing/RouteSwitchDescriptor.cs index 12aebdcf..0edf2de7 100644 --- a/src/PepperDash.Essentials.Core/Routing/RouteSwitchDescriptor.cs +++ b/src/PepperDash.Essentials.Core/Routing/RouteSwitchDescriptor.cs @@ -53,23 +53,20 @@ } /*/// - /// Represents an individual link for a route - /// - /// - /// Represents a RouteSwitchDescriptor + /// Represents a RouteSwitchDescriptor with generic input and output selectors. /// public class RouteSwitchDescriptor { /// - /// Gets or sets the SwitchingDevice + /// Gets or sets the SwitchingDevice. /// public IRoutingInputs SwitchingDevice { get { return InputPort.ParentDevice; } } /// - /// Gets or sets the OutputPort + /// Gets or sets the OutputPort. /// public RoutingOutputPort OutputPort { get; set; } /// - /// Gets or sets the InputPort + /// Gets or sets the InputPort. /// public RoutingInputPort InputPort { get; set; }