Skip to content

Commit 4c1bd05

Browse files
committed
Fix
1 parent 8e905b5 commit 4c1bd05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Extensions/Span/SpanExtensions.Linq.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ public static BigInteger Average(this Span<BigInteger> source)
471471
/// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
472472
public static T Min<T>(this Span<T> source) where T : INumber<T>
473473
{
474-
return ReadOnlySpanExtensions.Min<T>(source)
474+
return ReadOnlySpanExtensions.Min<T>(source);
475475
}
476476
#else
477477

@@ -630,7 +630,7 @@ public static BigInteger Min(this Span<BigInteger> source)
630630
/// <exception cref="ArgumentNullException"><paramref name="source"/> is null.</exception>
631631
public static T Max<T>(this Span<T> source) where T : INumber<T>
632632
{
633-
return ReadOnlySpanExtensions.Max<T>(source)
633+
return ReadOnlySpanExtensions.Max<T>(source);
634634
}
635635
#else
636636

0 commit comments

Comments
 (0)