Skip to content

Commit

Permalink
fix range equals
Browse files Browse the repository at this point in the history
  • Loading branch information
OrbintSoft committed Apr 19, 2020
1 parent 891ee04 commit 06c4e0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public override bool Equals(object other)
return false;
}

return Equals(this, (Range)other);
return this.Equals((Range)other);
}

/// <inheritdoc/>
Expand Down

0 comments on commit 06c4e0b

Please sign in to comment.