Skip to content

Commit

Permalink
Fix alignment of "Flatten" (type) args
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Apr 29, 2024
1 parent 2241256 commit b6608c4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions MoreLinq/Flatten.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,15 +123,15 @@ static partial class MoreEnumerable
static IEnumerable<
// Just like "IEnumerable.Current" is null-oblivious, so is this:
#nullable disable
/*...................*/ object
/*..........................*/ object
#nullable restore
/*.........................*/ > _(IEnumerable source,
Func<
/*.................................*/ > _(IEnumerable source,
Func<
// Just like "IEnumerable.Current" is null-oblivious, so is this:
#nullable disable
/*....................*/ object,
/*..........................................*/ object,
#nullable restore
/*........................*/ IEnumerable?> selector)
/*..................................................*/ IEnumerable?> selector)
{
var e = source.GetEnumerator();
var stack = new Stack<IEnumerator>();
Expand Down

0 comments on commit b6608c4

Please sign in to comment.