From ab08b1c1c0e8d2ad58538abba43172482d22c611 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Wed, 3 Mar 2021 23:06:10 +0000 Subject: [PATCH] (#7) Move EnumerableExtensions to child namespace --- X10D/src/EnumerableExtensions/EnumerableExtensions.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/X10D/src/EnumerableExtensions/EnumerableExtensions.cs b/X10D/src/EnumerableExtensions/EnumerableExtensions.cs index 876bcf5..b432d78 100644 --- a/X10D/src/EnumerableExtensions/EnumerableExtensions.cs +++ b/X10D/src/EnumerableExtensions/EnumerableExtensions.cs @@ -3,7 +3,7 @@ using System.Linq; using X10D.ComparableExtensions; using X10D.ListExtensions; -namespace X10D +namespace X10D.EnumerableExtensions { /// /// Extension methods for . @@ -28,10 +28,10 @@ namespace X10D /// /// Any type. /// The collection to split. - /// The maximum length of the nested collection. + /// The maximum length of the nested collection. /// - /// Returns an of of - /// values. + /// An containing an of + /// whose lengths are no greater than . /// public static IEnumerable> Split(this IEnumerable value, int chunkSize) {