Skip to content

Commit

Permalink
whoops, didn't save this in time for the last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Stevan Little committed Feb 17, 2013
1 parent d888ca4 commit 3db5fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/org/moe/runtime/builtins/NumClass.scala
Expand Up @@ -21,7 +21,7 @@ object NumClass {
args(0) match {
case i: MoeIntObject => getFloat(invocant.unboxToDouble.get + i.unboxToDouble.get)
case f: MoeFloatObject => getFloat(invocant.unboxToDouble.get + f.unboxToDouble.get)
case _ => throw new MoeErrors.UnexpectedType(invocant.toString)
case _ => throw new MoeErrors.UnexpectedType(args(0).toString)
}
}
)
Expand Down

0 comments on commit 3db5fae

Please sign in to comment.