Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
dongjoon-hyun committed Jun 10, 2017
1 parent c4ad4c5 commit 84b87b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ case class Range(
extends LeafNode with MultiInstanceRelation {

require(step != 0, s"step ($step) cannot be 0")
require(start != end, s"start ($step) cannot be equal to end ($end)")
require(start != end, s"start ($start) cannot be equal to end ($end)")
require(start < end ^ step < 0, s"the sign of step ($step) is invalid for range ($start, $end)")

val numElements: BigInt = {
Expand Down

0 comments on commit 84b87b7

Please sign in to comment.