From f0bce2983a5575398501de48072b8298a888b658 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 26 Feb 2023 12:27:12 +0000 Subject: [PATCH] Fix CS1574 in ListExtensions Count property is defined for IReadOnlyCollection not IReadOnlyList Oops --- X10D/src/Collections/ListExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/X10D/src/Collections/ListExtensions.cs b/X10D/src/Collections/ListExtensions.cs index 6e18207..69292b4 100644 --- a/X10D/src/Collections/ListExtensions.cs +++ b/X10D/src/Collections/ListExtensions.cs @@ -330,7 +330,7 @@ public static class ListExtensions /// /// is . /// - /// is less than zero or greater than . + /// is less than zero or greater than . /// public static IReadOnlyList Slice(this IReadOnlyList source, int start) { @@ -359,7 +359,7 @@ public static class ListExtensions /// is . /// /// or + is less than zero or greater than - /// . + /// . /// public static IReadOnlyList Slice(this IReadOnlyList source, int start, int length) {