From be58e8281cd82cbb5370b1b39895771cf2ffd925 Mon Sep 17 00:00:00 2001 From: sakno Date: Thu, 19 Oct 2023 11:13:35 +0300 Subject: [PATCH] Fixed compiler warnings --- src/DotNext/Span.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/DotNext/Span.cs b/src/DotNext/Span.cs index c2503d568..ca57b40d1 100644 --- a/src/DotNext/Span.cs +++ b/src/DotNext/Span.cs @@ -823,12 +823,12 @@ static void SwapMemory(Span x, Span y, Span buffer) } /// - /// + /// Swaps two ranges within the same span. /// - /// - /// - /// - /// + /// The type of the elements in the span. + /// The source span. + /// The first range. + /// The second range. /// or is out of valid range. /// is overlapped with . public static void Swap(this Span span, Range range1, Range range2)