Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Sep 14, 2023
1 parent 6e2a9dc commit a955ad6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Consume/Consume.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ class Consume
"b"
};
var append = enumerable.Append("c");
var maxBy = enumerable.MaxBy(_=>_);
var maxBy = enumerable.MaxBy(_ => _);
var chunk = enumerable.Chunk(3);
var minBy = enumerable.MinBy(_=>_);
var minBy = enumerable.MinBy(_ => _);
var skipLast = enumerable.SkipLast(1);

var dictionary = new Dictionary<string, string?>
Expand Down
4 changes: 1 addition & 3 deletions src/Tests/PolyfillExtensionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

[TestFixture]
[DebuggerNonUserCode]
partial class PolyfillExtensionsTests
{
}
partial class PolyfillExtensionsTests;

0 comments on commit a955ad6

Please sign in to comment.