From 1b38db29aa155ee79dd9b2418aa2921fda605c4a Mon Sep 17 00:00:00 2001
From: MoonsvnLyn <287222957+FirmaSpring@users.noreply.github.com>
Date: Mon, 17 Aug 2026 17:43:02 +0800
Subject: [PATCH] docs: remove duplicated XML doc block on
CubicResampler.Spline
Spline carried two consecutive summary blocks; the second one wrongly described it as the Robidoux Sharp algorithm. Keep the spline summary only.
Co-authored-by: FirmamentalSpring <287222957+FirmaSpring@users.noreply.github.com>
---
.../Processors/Transforms/Resamplers/CubicResampler.cs | 4 ----
1 file changed, 4 deletions(-)
diff --git a/src/ImageSharp/Processing/Processors/Transforms/Resamplers/CubicResampler.cs b/src/ImageSharp/Processing/Processors/Transforms/Resamplers/CubicResampler.cs
index 41228e4111..1add8160ae 100644
--- a/src/ImageSharp/Processing/Processors/Transforms/Resamplers/CubicResampler.cs
+++ b/src/ImageSharp/Processing/Processors/Transforms/Resamplers/CubicResampler.cs
@@ -53,10 +53,6 @@ namespace SixLabors.ImageSharp.Processing.Processors.Transforms;
/// The function implements the spline algorithm.
///
///
- ///
- /// The function implements the Robidoux Sharp algorithm.
- ///
- ///
public static readonly CubicResampler Spline = new(2, 1, 0);
///