From c6c9f2beefba2f21c609328930b42a06be86be42 Mon Sep 17 00:00:00 2001 From: Dmitry Pentin Date: Mon, 13 Sep 2021 09:38:26 +0300 Subject: [PATCH] Fixed docs --- src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs b/src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs index 01a00180a8..6fa776e2a8 100644 --- a/src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs +++ b/src/ImageSharp/Formats/Jpeg/Components/ZigZag.Intrinsic.cs @@ -130,7 +130,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components /// Requires Ssse3 support. /// /// Input matrix. - /// Matrix to store the result. Can be a reference to input matrix. public static unsafe void ApplyZigZagOrderingSse(ref Block8x8 block) { DebugGuard.IsTrue(Ssse3.IsSupported, "Ssse3 support is required to run this operation!"); @@ -232,7 +231,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components /// Requires Avx2 support. /// /// Input matrix. - /// Matrix to store the result. Can be a reference to input matrix. public static unsafe void ApplyZigZagOrderingAvx(ref Block8x8 block) { DebugGuard.IsTrue(Avx2.IsSupported, "Avx2 support is required to run this operation!");