Skip to content

Commit

Permalink
Rational is not an ARRAY
Browse files Browse the repository at this point in the history
  • Loading branch information
enebo committed Oct 29, 2014
1 parent 79d9a4d commit 00ba272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/ir/operands/Rational.java
Expand Up @@ -10,7 +10,7 @@ public class Rational extends ImmutableLiteral {
private long numerator;

public Rational(long numerator) {
super(OperandType.ARRAY);
super(OperandType.RATIONAL);

this.numerator = numerator;
}
Expand Down

0 comments on commit 00ba272

Please sign in to comment.