Skip to content

Commit

Permalink
Making AssertComparer public to make it easier to write custom Should…
Browse files Browse the repository at this point in the history
… extension methods. Closes machine#94
  • Loading branch information
agross committed Feb 25, 2012
1 parent 4ba8718 commit de8a3cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Machine.Specifications/AssertComparer.cs
Expand Up @@ -4,7 +4,7 @@


namespace Machine.Specifications namespace Machine.Specifications
{ {
class AssertComparer<T> : IComparer<T>, IEqualityComparer<T> public class AssertComparer<T> : IComparer<T>, IEqualityComparer<T>
{ {
public int Compare(T x, T y) public int Compare(T x, T y)
{ {
Expand Down

0 comments on commit de8a3cb

Please sign in to comment.