@@ -30,7 +30,7 @@ func GroupByMust[Source, Key any](source Enumerable[Source], keySelector func(So
3030
3131// [GroupByEq] groups the elements of a sequence according to
3232// a specified key selector function and compares the keys using 'equaler'.
33- // If 'equaler' is nil [collate.DeepEqualer] is used. 'source' is enumerated immediately.
33+ // If 'equaler' is nil, [collate.DeepEqualer] is used. 'source' is enumerated immediately.
3434//
3535// [GroupByEq]: https://learn.microsoft.com/dotnet/api/system.linq.enumerable.groupby
3636func GroupByEq [Source , Key any ](source Enumerable [Source ],
@@ -74,7 +74,7 @@ func GroupBySelMust[Source, Key, Element any](source Enumerable[Source],
7474
7575// [GroupBySelEq] groups the elements of a sequence according to a key selector function.
7676// The keys are compared using 'equaler' and each group's elements are projected using a specified function.
77- // If 'equaler' is nil [collate.DeepEqualer] is used. 'source' is enumerated immediately.
77+ // If 'equaler' is nil, [collate.DeepEqualer] is used. 'source' is enumerated immediately.
7878//
7979// [GroupBySelEq]: https://learn.microsoft.com/dotnet/api/system.linq.enumerable.groupby
8080func GroupBySelEq [Source , Key , Element any ](source Enumerable [Source ], keySelector func (Source ) Key ,
@@ -123,7 +123,7 @@ func GroupByResMust[Source, Key, Result any](source Enumerable[Source],
123123// [GroupByResEq] groups the elements of a sequence according to a specified key selector function
124124// and creates a result value from each group and its key.
125125// The keys are compared using 'equaler'.
126- // If 'equaler' is nil [collate.DeepEqualer] is used. 'source' is enumerated immediately.
126+ // If 'equaler' is nil, [collate.DeepEqualer] is used. 'source' is enumerated immediately.
127127//
128128// [GroupByResEq]: https://learn.microsoft.com/dotnet/api/system.linq.enumerable.groupby
129129func GroupByResEq [Source , Key , Result any ](source Enumerable [Source ],
@@ -169,7 +169,7 @@ func GroupBySelResMust[Source, Key, Element, Result any](source Enumerable[Sourc
169169// [GroupBySelResEq] groups the elements of a sequence according to a specified key selector function
170170// and creates a result value from each group and its key.
171171// Key values are compared using 'equaler' and the elements of each group are projected using a specified function.
172- // If 'equaler' is nil [collate.DeepEqualer] is used. 'source' is enumerated immediately.
172+ // If 'equaler' is nil, [collate.DeepEqualer] is used. 'source' is enumerated immediately.
173173//
174174// [GroupBySelResEq]: https://learn.microsoft.com/dotnet/api/system.linq.enumerable.groupby
175175func GroupBySelResEq [Source , Key , Element , Result any ](source Enumerable [Source ], keySelector func (Source ) Key ,
0 commit comments